0
0
Fork 0

Turn 8 snow layers stacked together into snow block (fixes #4483) (#4591)

Reviewed-on: VoxeLibre/VoxeLibre#4591
Reviewed-by: Mikita Wiśniewski <rudzik8@protonmail.com>
Co-authored-by: goodspeed <goodspeed@mailo.cat>
Co-committed-by: goodspeed <goodspeed@mailo.cat>
This commit is contained in:
William Goodspeed 2024-08-16 22:03:01 +02:00 committed by the-real-herowl
parent 5e6e4967f0
commit ee4d1efaa5
1 changed files with 9 additions and 1 deletions

View File

@ -1051,7 +1051,15 @@ for i=1,8 do
local itemstring = itemstack:get_name() local itemstring = itemstack:get_name()
local itemcount = itemstack:get_count() local itemcount = itemstack:get_count()
local fakestack = ItemStack(itemstring.." "..itemcount) local fakestack = ItemStack(itemstring.." "..itemcount)
fakestack:set_name("mcl_core:snow_"..math.min(8, (i+g))) if i+g < 8 then
fakestack:set_name("mcl_core:snow_"..(i+g))
else
-- To stack `mcl_core:snow_8', just replacing it with `mcl_core:snowblock' Issue#4483
if i+g == 9 then
fakestack:set_count(itemcount + 1)
end
fakestack:set_name("mcl_core:snowblock")
end
itemstack = minetest.item_place(fakestack, placer, pointed_thing) itemstack = minetest.item_place(fakestack, placer, pointed_thing)
minetest.sound_play(mcl_sounds.node_sound_snow_defaults().place, {pos = pointed_thing.under}, true) minetest.sound_play(mcl_sounds.node_sound_snow_defaults().place, {pos = pointed_thing.under}, true)
itemstack:set_name(itemstring) itemstack:set_name(itemstring)