mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
Backwards incompatible change to match 1.4_00_01
This commit is contained in:
parent
3791a158de
commit
8cd170a819
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue