mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-22 16:09:33 +01:00
Fixed hoglins never dropping leather. (#4736)
Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4736 Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land> Co-authored-by: villager8472 <gecko15x@gmx.de> Co-committed-by: villager8472 <gecko15x@gmx.de>
This commit is contained in:
parent
38561d2a5d
commit
c6c5de7335
1 changed files with 1 additions and 3 deletions
|
@ -41,12 +41,10 @@ local hoglin = {
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
run_velocity = 2.8,
|
run_velocity = 2.8,
|
||||||
drops = {
|
drops = {
|
||||||
{name = "mobs_mcitems:leather",
|
{name = "mcl_mobitems:leather",
|
||||||
chance = 1,
|
chance = 1,
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 1,},
|
max = 1,},
|
||||||
},
|
|
||||||
drops = {
|
|
||||||
{name = "mcl_mobitems:porkchop",
|
{name = "mcl_mobitems:porkchop",
|
||||||
chance = 1,
|
chance = 1,
|
||||||
min = 2,
|
min = 2,
|
||||||
|
|
Loading…
Reference in a new issue