From e2b1514daf678d8ea95a71af8bbb2a9b8efb3440 Mon Sep 17 00:00:00 2001 From: Wesley Wolfe Date: Sun, 9 Sep 2012 23:19:28 -0500 Subject: Bulk pending cleanup. --- src/main/java/net/minecraft/server/Entity.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/main/java/net/minecraft/server/Entity.java') diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java index f786464a..8b02cf3a 100644 --- a/src/main/java/net/minecraft/server/Entity.java +++ b/src/main/java/net/minecraft/server/Entity.java @@ -217,7 +217,7 @@ public abstract class Entity { } public void z() { - // this.world.methodProfiler.a("entityBaseTick"); // CraftBukkit - not in production code + this.world.methodProfiler.a("entityBaseTick"); if (this.vehicle != null && this.vehicle.dead) { this.vehicle = null; } @@ -321,7 +321,7 @@ public abstract class Entity { } this.justCreated = false; - // this.world.methodProfiler.b(); // CraftBukkit - not in production code + this.world.methodProfiler.b(); } protected void A() { @@ -393,7 +393,7 @@ public abstract class Entity { this.locY = this.boundingBox.b + (double) this.height - (double) this.V; this.locZ = (this.boundingBox.c + this.boundingBox.f) / 2.0D; } else { - // this.world.methodProfiler.a("move"); // CraftBukkit - not in production code + this.world.methodProfiler.a("move"); this.V *= 0.4F; double d3 = this.locX; double d4 = this.locZ; @@ -581,8 +581,8 @@ public abstract class Entity { } } - // this.world.methodProfiler.b(); // CraftBukkit - not in production code - // this.world.methodProfiler.a("rest"); // CraftBukkit - not in production code + this.world.methodProfiler.b(); + this.world.methodProfiler.a("rest"); this.locX = (this.boundingBox.a + this.boundingBox.d) / 2.0D; this.locY = this.boundingBox.b + (double) this.height - (double) this.V; this.locZ = (this.boundingBox.c + this.boundingBox.f) / 2.0D; @@ -673,7 +673,7 @@ public abstract class Entity { this.fireTicks = -this.maxFireTicks; } - // this.world.methodProfiler.b(); // CraftBukkit - not in production code + this.world.methodProfiler.b(); } } -- cgit v1.2.3