mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 10:31:06 +01:00
Use alias for minetest.* namespace function call.
* Fix one missed minetest.get_node use in earlier commit.
This commit is contained in:
parent
d2261426c3
commit
639bf936c5
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ local function on_place_bucket_empty(itemstack, user, pointed_thing)
|
|||
return new_stack
|
||||
end
|
||||
|
||||
local node = minetest.get_node(pointed_thing.under)
|
||||
local node = get_node(pointed_thing.under)
|
||||
local nn = node.name
|
||||
|
||||
local new_bucket
|
||||
|
|
Loading…
Reference in a new issue