diff options
author | Erik Broes <erikbroes@grum.nl> | 2011-04-20 18:59:31 +0200 |
---|---|---|
committer | Erik Broes <erikbroes@grum.nl> | 2011-04-20 18:59:31 +0200 |
commit | 8cd170a819b2e92cde8976c2cb912d8cb816de2c (patch) | |
tree | 8655e3e89346e9c56e58f86e2a054ae4f6f0d71f | |
parent | 3791a158de118da26de5f3e07dad8414e1bdac15 (diff) | |
download | bukkit-8cd170a819b2e92cde8976c2cb912d8cb816de2c.tar bukkit-8cd170a819b2e92cde8976c2cb912d8cb816de2c.tar.gz bukkit-8cd170a819b2e92cde8976c2cb912d8cb816de2c.tar.lz bukkit-8cd170a819b2e92cde8976c2cb912d8cb816de2c.tar.xz bukkit-8cd170a819b2e92cde8976c2cb912d8cb816de2c.zip |
Backwards incompatible change to match 1.4_00_01
-rw-r--r-- | src/main/java/org/bukkit/BlockChangeDelegate.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/bukkit/BlockChangeDelegate.java b/src/main/java/org/bukkit/BlockChangeDelegate.java index 6bc62734..a60334c9 100644 --- a/src/main/java/org/bukkit/BlockChangeDelegate.java +++ b/src/main/java/org/bukkit/BlockChangeDelegate.java @@ -17,7 +17,7 @@ public interface BlockChangeDelegate { * @param typeId
* @return true if the block was set successfully
*/
- public boolean setTypeId(int x, int y, int z, int typeId);
+ public boolean setRawTypeId(int x, int y, int z, int typeId);
/**
* Set a block type and data at the specified coordinates.
@@ -29,7 +29,7 @@ public interface BlockChangeDelegate { * @param data
* @return true if the block was set successfully
*/
- public boolean setTypeIdAndData(int x, int y, int z, int typeId, int data);
+ public boolean setRawTypeIdAndData(int x, int y, int z, int typeId, int data);
/**
* Get the block type at the location.
|