forked from VoxeLibre/VoxeLibre
Fix pig drops for real
This commit is contained in:
parent
ae7098895d
commit
086b4daeeb
|
@ -21,7 +21,7 @@ mobs:register_mob("mobs_mc:pig", {
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
armor = 100,
|
armor = 100,
|
||||||
drops = {
|
drops = {
|
||||||
{name = "mcl_mobitems:porkchop_raw",
|
{name = "mcl_mobitems:porkchop",
|
||||||
chance = 1,
|
chance = 1,
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 3,},
|
max = 3,},
|
||||||
|
@ -66,7 +66,7 @@ mobs:register_mob("mobs_mc:pig", {
|
||||||
self.saddle = "yes"
|
self.saddle = "yes"
|
||||||
self.tamed = true
|
self.tamed = true
|
||||||
self.drops = {
|
self.drops = {
|
||||||
{name = "mcl_mobitems:porkchop_raw",
|
{name = "mcl_mobitems:porkchop",
|
||||||
chance = 1,
|
chance = 1,
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 3,},
|
max = 3,},
|
||||||
|
|
Loading…
Reference in New Issue