From 4ecbf5f5909b685326ced934ac6dd77f1caed04a Mon Sep 17 00:00:00 2001 From: sk89q Date: Thu, 21 Apr 2011 23:28:58 -0700 Subject: [PATCH] Changed Block.setTypeId() back to old behavior before the new translation process. --- src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java index 6891aedd45..68249b59e4 100644 --- a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java +++ b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java @@ -124,7 +124,7 @@ public class CraftBlock implements Block { * @return whether the block was changed */ public boolean setTypeId(final int type) { - return chunk.getHandle().world.setRawTypeId(x, y, z, type); + return chunk.getHandle().world.setTypeId(x, y, z, type); } public boolean setTypeId(final int type, final boolean applyPhysics) {