Update for Minecraft 1.8

This commit is contained in:
Dinnerbone
2011-09-15 01:23:52 +01:00
parent 54bcd1c1f3
commit 5b2c774edc
107 changed files with 4415 additions and 3504 deletions

View File

@@ -27,19 +27,19 @@ public class EntityPig extends EntityAnimal {
this.setSaddle(nbttagcompound.m("Saddle"));
}
protected String g() {
return "mob.pig";
}
protected String h() {
return "mob.pig";
}
protected String i() {
return "mob.pig";
}
protected String j() {
return "mob.pigdeath";
}
public boolean a(EntityHuman entityhuman) {
public boolean b(EntityHuman entityhuman) {
if (this.hasSaddle() && !this.world.isStatic && (this.passenger == null || this.passenger == entityhuman)) {
entityhuman.mount(this);
return true;
@@ -48,7 +48,7 @@ public class EntityPig extends EntityAnimal {
}
}
protected int j() {
protected int k() {
return this.fireTicks > 0 ? Item.GRILLED_PORK.id : Item.PORK.id;
}