mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Fix dumb mistake in creative crash fix
This commit is contained in:
parent
e294466029
commit
2a9d704293
1 changed files with 0 additions and 1 deletions
|
@ -209,7 +209,6 @@ end
|
|||
minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing)
|
||||
if not puncher or not puncher:is_player() then return end
|
||||
local name = puncher:get_player_name()
|
||||
if minetest.is_creative_enabled(name) then return end
|
||||
if not minetest.is_creative_enabled(name) then return end
|
||||
if pointed_thing.type ~= "node" then return end
|
||||
local def = minetest.registered_nodes[node.name]
|
||||
|
|
Loading…
Reference in a new issue