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

This commit is contained in:
sk89q 2011-01-08 12:24:39 -08:00
parent eb4b30185f
commit e83d9f676d

View file

@ -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);
}
/**