summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/Entity.java
diff options
context:
space:
mode:
authorTravis Watkins <amaranth@ubuntu.com>2013-03-20 15:09:23 -0500
committerTravis Watkins <amaranth@ubuntu.com>2013-03-20 15:09:23 -0500
commit696543cf3f43756dfc2d4c1d18b2b461badcb107 (patch)
treec01929bbcf4f052df46c267226c529869042ad78 /src/main/java/net/minecraft/server/Entity.java
parent6aaa1e83df796b7d380a22af3842f3aa4b367f4d (diff)
downloadcraftbukkit-696543cf3f43756dfc2d4c1d18b2b461badcb107.tar
craftbukkit-696543cf3f43756dfc2d4c1d18b2b461badcb107.tar.gz
craftbukkit-696543cf3f43756dfc2d4c1d18b2b461badcb107.tar.lz
craftbukkit-696543cf3f43756dfc2d4c1d18b2b461badcb107.tar.xz
craftbukkit-696543cf3f43756dfc2d4c1d18b2b461badcb107.zip
Update CraftBukkit to Minecraft 1.5.1
Diffstat (limited to 'src/main/java/net/minecraft/server/Entity.java')
-rw-r--r--src/main/java/net/minecraft/server/Entity.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
index b9667a0e..2e7cb431 100644
--- a/src/main/java/net/minecraft/server/Entity.java
+++ b/src/main/java/net/minecraft/server/Entity.java
@@ -88,7 +88,7 @@ public abstract class Entity {
public int ticksLived;
public int maxFireTicks;
public int fireTicks; // CraftBukkit - private -> public
- protected boolean ae;
+ protected boolean inWater;
public int noDamageTicks;
private boolean justCreated;
protected boolean fireProof;
@@ -137,7 +137,7 @@ public abstract class Entity {
this.ticksLived = 0;
this.maxFireTicks = 1;
this.fireTicks = 0;
- this.ae = false;
+ this.inWater = false;
this.noDamageTicks = 0;
this.justCreated = true;
this.fireProof = false;
@@ -819,16 +819,16 @@ public abstract class Entity {
}
public boolean F() {
- return this.ae || this.world.F(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ)) || this.world.F(MathHelper.floor(this.locX), MathHelper.floor(this.locY + (double) this.length), MathHelper.floor(this.locZ));
+ return this.inWater || this.world.F(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ)) || this.world.F(MathHelper.floor(this.locX), MathHelper.floor(this.locY + (double) this.length), MathHelper.floor(this.locZ));
}
public boolean G() {
- return this.ae;
+ return this.inWater;
}
public boolean H() {
if (this.world.a(this.boundingBox.grow(0.0D, -0.4000000059604645D, 0.0D).shrink(0.001D, 0.001D, 0.001D), Material.WATER, this)) {
- if (!this.ae && !this.justCreated) {
+ if (!this.inWater && !this.justCreated) {
float f = MathHelper.sqrt(this.motX * this.motX * 0.20000000298023224D + this.motY * this.motY + this.motZ * this.motZ * 0.20000000298023224D) * 0.2F;
if (f > 1.0F) {
@@ -856,13 +856,13 @@ public abstract class Entity {
}
this.fallDistance = 0.0F;
- this.ae = true;
+ this.inWater = true;
this.fireTicks = 0;
} else {
- this.ae = false;
+ this.inWater = false;
}
- return this.ae;
+ return this.inWater;
}
public boolean a(Material material) {