From a98c7ba2c706caa0ba83bddefa5ffecbe658ccd3 Mon Sep 17 00:00:00 2001 From: Erik Broes Date: Mon, 27 Jun 2011 00:25:01 +0200 Subject: Massive renaming update in nms. If you bypassed Bukkit, you will likely break. Also minimized all the nms diffs and generic cleanups all around. --- src/main/java/net/minecraft/server/BlockSapling.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/net/minecraft/server/BlockSapling.java') diff --git a/src/main/java/net/minecraft/server/BlockSapling.java b/src/main/java/net/minecraft/server/BlockSapling.java index 58e6bf58..0106d612 100644 --- a/src/main/java/net/minecraft/server/BlockSapling.java +++ b/src/main/java/net/minecraft/server/BlockSapling.java @@ -71,15 +71,15 @@ public class BlockSapling extends BlockFlower { BlockChangeWithNotify(World world) { this.world = world; } public boolean setRawTypeId(int x, int y, int z, int type) { - return world.setTypeId(x, y, z, type); + return this.world.setTypeId(x, y, z, type); } public boolean setRawTypeIdAndData(int x, int y, int z, int type, int data) { - return world.setTypeIdAndData(x, y, z, type, data); + return this.world.setTypeIdAndData(x, y, z, type, data); } public int getTypeId(int x, int y, int z) { - return world.getTypeId(x, y, z); + return this.world.getTypeId(x, y, z); } } // CraftBukkit end -- cgit v1.2.3