mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Fix return value
This commit is contained in:
parent
30a00f0a01
commit
e0e5962d65
2 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ for i in ipairs (butter_list) do
|
|||
minetest.get_node_timer(pos):start(30)
|
||||
end,
|
||||
on_rightclick = function(...)
|
||||
return false
|
||||
return nil
|
||||
end,
|
||||
on_punch = function(pos, ...)
|
||||
minetest.remove_node(pos)
|
||||
|
|
|
@ -85,7 +85,7 @@ minetest.register_node("fireflies:hidden_firefly", {
|
|||
minetest.get_node_timer(pos):start(30)
|
||||
end,
|
||||
on_rightclick = function(...)
|
||||
return false
|
||||
return nil
|
||||
end,
|
||||
on_punch = function(pos, ...)
|
||||
minetest.remove_node(pos)
|
||||
|
|
Loading…
Add table
Reference in a new issue