mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-02-17 05:12:25 +01:00
Reduce snow layer silk touch drop amount
It was possible to duplicate snow layers by placing them and then mining them using a tool enchanted with silk touch. This commit fixes the “snow dupe” by reducing the amount of snow layers dropped in this case by one.
committed by
Elias Fleckenstein
parent
a9ceeabc4b
commit
0a474ee578
@ -1041,7 +1041,7 @@ for i=1,8 do
|
||||
drop = "mcl_throwing:snowball "..(i+1),
|
||||
_mcl_blast_resistance = 0.1,
|
||||
_mcl_hardness = 0.1,
|
||||
_mcl_silk_touch_drop = {"mcl_core:snow " .. (i+1)},
|
||||
_mcl_silk_touch_drop = {"mcl_core:snow " .. i},
|
||||
})
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user