Use alias for minetest.* namespace function call.

* Fix one missed minetest.get_node use in earlier commit.
This commit is contained in:
kabou 2022-02-20 19:52:05 +01:00
parent d2261426c3
commit 639bf936c5
1 changed files with 1 additions and 1 deletions

View File

@ -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