mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-04 14:53:51 +01:00
Fix node on_rightclick with fishbucket
This commit is contained in:
parent
efdd22d69f
commit
927eff691c
@ -12,6 +12,12 @@ local fish_names = {
|
|||||||
local fishbucket_prefix = "mcl_buckets:bucket_"
|
local fishbucket_prefix = "mcl_buckets:bucket_"
|
||||||
|
|
||||||
local function on_place_fish(itemstack, placer, pointed_thing)
|
local function on_place_fish(itemstack, placer, pointed_thing)
|
||||||
|
|
||||||
|
local new_stack = mcl_util.call_on_rightclick(itemstack, placer, pointed_thing)
|
||||||
|
if new_stack then
|
||||||
|
return new_stack
|
||||||
|
end
|
||||||
|
|
||||||
local pos = pointed_thing.above or pointed_thing.under
|
local pos = pointed_thing.above or pointed_thing.under
|
||||||
if not pos then return end
|
if not pos then return end
|
||||||
local n = minetest.get_node_or_nil(pos)
|
local n = minetest.get_node_or_nil(pos)
|
||||||
|
Loading…
Reference in New Issue
Block a user