diff options
Diffstat (limited to 'src/main/java/net/minecraft/server/EntityMagmaCube.java')
-rw-r--r-- | src/main/java/net/minecraft/server/EntityMagmaCube.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/net/minecraft/server/EntityMagmaCube.java b/src/main/java/net/minecraft/server/EntityMagmaCube.java index 5229383e..cacde68a 100644 --- a/src/main/java/net/minecraft/server/EntityMagmaCube.java +++ b/src/main/java/net/minecraft/server/EntityMagmaCube.java @@ -13,7 +13,7 @@ public class EntityMagmaCube extends EntitySlime { return this.world.difficulty > 0 && this.world.b(this.boundingBox) && this.world.getCubes(this, this.boundingBox).isEmpty() && !this.world.containsLiquid(this.boundingBox); } - public int aU() { + public int aW() { return this.getSize() * 3; } @@ -66,7 +66,7 @@ public class EntityMagmaCube extends EntitySlime { this.b *= 0.9F; } - protected void bf() { + protected void bi() { this.motY = (double) (0.42F + (float) this.getSize() * 0.1F); this.am = true; } @@ -81,11 +81,11 @@ public class EntityMagmaCube extends EntitySlime { return super.m() + 2; } - protected String aX() { + protected String aZ() { return "mob.slime." + (this.getSize() > 1 ? "big" : "small"); } - protected String aY() { + protected String ba() { return "mob.slime." + (this.getSize() > 1 ? "big" : "small"); } |