diff --git a/paper-api/src/main/java/org/bukkit/BlockChangeDelegate.java b/paper-api/src/main/java/org/bukkit/BlockChangeDelegate.java index 6bc62734fa..a60334c92b 100644 --- a/paper-api/src/main/java/org/bukkit/BlockChangeDelegate.java +++ b/paper-api/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.