1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-09-22 20:00:17 +02:00

Screwdriver: drop nodes if no longer attached.

This should be fairly cheap and pops off items if needed.
This commit is contained in:
Auke Kok 2017-03-08 21:57:10 -08:00 committed by paramat
parent efb81d188e
commit d5e19d70c2

View File

@ -130,6 +130,7 @@ screwdriver.handler = function(itemstack, user, pointed_thing, mode, uses)
if should_rotate then if should_rotate then
node.param2 = new_param2 node.param2 = new_param2
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
minetest.check_for_falling(pos)
end end
if not minetest.setting_getbool("creative_mode") then if not minetest.setting_getbool("creative_mode") then