forked from VoxeLibre/VoxeLibre
Ensure hoglins and piglins aren't faster than player.
This commit is contained in:
parent
b7079e8b19
commit
7f3734b6cb
|
@ -36,7 +36,7 @@ local hoglin = {
|
||||||
jump = true,
|
jump = true,
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
run_velocity = 3.2,
|
run_velocity = 2.8,
|
||||||
drops = {
|
drops = {
|
||||||
{name = "mobs_mcitems:leather",
|
{name = "mobs_mcitems:leather",
|
||||||
chance = 1,
|
chance = 1,
|
||||||
|
|
|
@ -62,8 +62,8 @@ local piglin = {
|
||||||
},
|
},
|
||||||
jump = true,
|
jump = true,
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
walk_velocity = 2,
|
walk_velocity = 1.4,
|
||||||
run_velocity = 4,
|
run_velocity = 2.8,
|
||||||
drops = {
|
drops = {
|
||||||
{name = "mcl_bows:crossbow",
|
{name = "mcl_bows:crossbow",
|
||||||
chance = 10,
|
chance = 10,
|
||||||
|
|
Loading…
Reference in New Issue