From a6c8a36dcea9c976d8b48f8b942608248db8cb4f Mon Sep 17 00:00:00 2001 From: Erik Broes Date: Wed, 20 Apr 2011 22:47:26 +0200 Subject: Update for 1.5_02. --- .../java/net/minecraft/server/EntitySnowball.java | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/main/java/net/minecraft/server/EntitySnowball.java') diff --git a/src/main/java/net/minecraft/server/EntitySnowball.java b/src/main/java/net/minecraft/server/EntitySnowball.java index 2bd1eee4..60d442e0 100644 --- a/src/main/java/net/minecraft/server/EntitySnowball.java +++ b/src/main/java/net/minecraft/server/EntitySnowball.java @@ -26,13 +26,13 @@ public class EntitySnowball extends Entity { this.b(0.25F, 0.25F); } - protected void a() {} + protected void b() {} public EntitySnowball(World world, EntityLiving entityliving) { super(world); this.shooter = entityliving; this.b(0.25F, 0.25F); - this.setPositionRotation(entityliving.locX, entityliving.locY + (double) entityliving.q(), entityliving.locZ, entityliving.yaw, entityliving.pitch); + this.setPositionRotation(entityliving.locX, entityliving.locY + (double) entityliving.s(), entityliving.locZ, entityliving.yaw, entityliving.pitch); this.locX -= (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * 0.16F); this.locY -= 0.10000000149011612D; this.locZ -= (double) (MathHelper.sin(this.yaw / 180.0F * 3.1415927F) * 0.16F); @@ -76,11 +76,11 @@ public class EntitySnowball extends Entity { this.h = 0; } - public void f_() { - this.bi = this.locX; - this.bj = this.locY; - this.bk = this.locZ; - super.f_(); + public void p_() { + this.bk = this.locX; + this.bl = this.locY; + this.bm = this.locZ; + super.p_(); if (this.a > 0) { --this.a; } @@ -125,7 +125,7 @@ public class EntitySnowball extends Entity { for (int j = 0; j < list.size(); ++j) { Entity entity1 = (Entity) list.get(j); - if (entity1.d_() && (entity1 != this.shooter || this.i >= 5)) { + if (entity1.o_() && (entity1 != this.shooter || this.i >= 5)) { float f = 0.3F; AxisAlignedBB axisalignedbb = entity1.boundingBox.b((double) f, (double) f, (double) f); MovingObjectPosition movingobjectposition1 = axisalignedbb.a(vec3d, vec3d1); @@ -213,7 +213,7 @@ public class EntitySnowball extends Entity { float f2 = 0.99F; float f3 = 0.03F; - if (this.g_()) { + if (this.Z()) { for (int l = 0; l < 4; ++l) { float f4 = 0.25F; @@ -230,7 +230,7 @@ public class EntitySnowball extends Entity { this.setPosition(this.locX, this.locY, this.locZ); } - public void a(NBTTagCompound nbttagcompound) { + public void b(NBTTagCompound nbttagcompound) { nbttagcompound.a("xTile", (short) this.b); nbttagcompound.a("yTile", (short) this.c); nbttagcompound.a("zTile", (short) this.d); @@ -239,7 +239,7 @@ public class EntitySnowball extends Entity { nbttagcompound.a("inGround", (byte) (this.f ? 1 : 0)); } - public void b(NBTTagCompound nbttagcompound) { + public void a(NBTTagCompound nbttagcompound) { this.b = nbttagcompound.d("xTile"); this.c = nbttagcompound.d("yTile"); this.d = nbttagcompound.d("zTile"); -- cgit v1.2.3