Update to Minecraft 1.7

This commit is contained in:
Dinnerbone
2011-06-29 23:02:25 +01:00
parent a98c7ba2c7
commit a679e7f380
67 changed files with 829 additions and 678 deletions

View File

@@ -35,13 +35,16 @@ public class TileEntityMobSpawner extends TileEntity {
this.b -= 360.0D;
}
if (this.spawnDelay == -1) {
this.c();
}
if (!this.world.isStatic) {
if (this.spawnDelay == -1) {
this.c();
}
if (this.spawnDelay > 0) {
--this.spawnDelay;
return;
}
if (this.spawnDelay > 0) {
--this.spawnDelay;
} else {
byte b0 = 4;
for (int i = 0; i < b0; ++i) {
@@ -83,14 +86,14 @@ public class TileEntityMobSpawner extends TileEntity {
this.world.a("flame", d0, d1, d2, 0.0D, 0.0D, 0.0D);
}
entityliving.R();
entityliving.S();
this.c();
}
}
}
super.g_();
}
super.g_();
}
}