Clear item meta when turning fishbucket to empty bucket

before it simply set a different itemstring, now it creates a
whole new itemstack
This commit is contained in:
cora 2022-11-26 04:12:56 +01:00
parent 66322a873b
commit f14bfdc0cd
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ local function on_place_fish(itemstack, placer, pointed_thing)
minetest.set_node(pos,{name = water})
end
if not placer or not minetest.is_creative_enabled(placer:get_player_name()) then
itemstack:set_name("mcl_buckets:bucket_empty")
itemstack = ItemStack("mcl_buckets:bucket_empty")
end
end
end