summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/World.java
diff options
context:
space:
mode:
authorNathan Adams <dinnerbone@dinnerbone.com>2012-03-22 20:39:39 +0000
committerNathan Adams <dinnerbone@dinnerbone.com>2012-03-22 20:39:39 +0000
commit9d09e7d0167326d4169f734e4b6d04c54d767507 (patch)
tree898333912891b9c35a63994242fbd55d5b6ac2c6 /src/main/java/net/minecraft/server/World.java
parent8dc7417a3d5c1af1e6434dc54952cfd5a8e90688 (diff)
downloadcraftbukkit-9d09e7d0167326d4169f734e4b6d04c54d767507.tar
craftbukkit-9d09e7d0167326d4169f734e4b6d04c54d767507.tar.gz
craftbukkit-9d09e7d0167326d4169f734e4b6d04c54d767507.tar.lz
craftbukkit-9d09e7d0167326d4169f734e4b6d04c54d767507.tar.xz
craftbukkit-9d09e7d0167326d4169f734e4b6d04c54d767507.zip
Updated to Minecraft version 1.2.4. Updated version string to 1.2.4-R0.1.
Diffstat (limited to 'src/main/java/net/minecraft/server/World.java')
-rw-r--r--src/main/java/net/minecraft/server/World.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
index 8a35b54f..5eaebac0 100644
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -279,7 +279,7 @@ public class World implements IBlockAccess {
public boolean isTileEntity(int i, int j, int k) {
int l = this.getTypeId(i, j, k);
- return Block.byId[l] != null && Block.byId[l].n();
+ return Block.byId[l] != null && Block.byId[l].o();
}
public boolean isLoaded(int i, int j, int k) {
@@ -1111,7 +1111,7 @@ public class World implements IBlockAccess {
continue;
}
// CraftBukkit end
- entity.G_();
+ entity.F_();
if (entity.dead) {
this.e.remove(i--);
}
@@ -1260,9 +1260,9 @@ public class World implements IBlockAccess {
entity.lastPitch = entity.pitch;
if (flag && entity.bZ) {
if (entity.vehicle != null) {
- entity.Q();
+ entity.R();
} else {
- entity.G_();
+ entity.F_();
}
}
@@ -2038,7 +2038,7 @@ public class World implements IBlockAccess {
++j;
Block block = Block.byId[j3];
- if (block != null && block.m()) {
+ if (block != null && block.n()) {
++i;
block.a(this, k2 + k, i3 + chunksection.c(), l2 + l, this.random);
}
@@ -2060,7 +2060,7 @@ public class World implements IBlockAccess {
public boolean c(int i, int j, int k, boolean flag) {
BiomeBase biomebase = this.getBiome(i, k);
- float f = biomebase.h();
+ float f = biomebase.i();
if (f > 0.15F) {
return false;
@@ -2103,7 +2103,7 @@ public class World implements IBlockAccess {
public boolean u(int i, int j, int k) {
BiomeBase biomebase = this.getBiome(i, k);
- float f = biomebase.h();
+ float f = biomebase.i();
if (f > 0.15F) {
return false;
@@ -2870,14 +2870,14 @@ public class World implements IBlockAccess {
} else {
BiomeBase biomebase = this.getBiome(i, k);
- return biomebase.b() ? false : biomebase.c();
+ return biomebase.c() ? false : biomebase.d();
}
}
public boolean z(int i, int j, int k) {
BiomeBase biomebase = this.getBiome(i, k);
- return biomebase.d();
+ return biomebase.e();
}
public void a(String s, WorldMapBase worldmapbase) {