forked from VoxeLibre/VoxeLibre
Fix pig drops
This commit is contained in:
parent
34a7108020
commit
ae7098895d
|
@ -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:pork_raw",
|
{name = "mcl_mobitems:porkchop_raw",
|
||||||
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:pork_raw",
|
{name = "mcl_mobitems:porkchop_raw",
|
||||||
chance = 1,
|
chance = 1,
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 3,},
|
max = 3,},
|
||||||
|
|
Loading…
Reference in New Issue