3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

Changed Block.setTypeID() to return a boolean indicating whether the block was changed (as provided by Minecraft).

Dieser Commit ist enthalten in:
sk89q 2011-01-08 12:24:39 -08:00
Ursprung eb4b30185f
Commit e83d9f676d

Datei anzeigen

@ -117,10 +117,11 @@ public class CraftBlock implements Block {
* Sets the type-ID of this block
*
* @param type Type-ID to change this block to
* @return whether the block was changed
*/
public void setTypeID(final int type) {
public boolean setTypeID(final int type) {
this.type = type;
world.getHandle().d(x, y, z, type);
return world.getHandle().d(x, y, z, type);
}
/**