Fixed Material

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot 2011-01-01 07:05:05 +00:00
parent 5dfaef5542
commit ab747e99f0

View File

@ -86,22 +86,40 @@ public class CraftBlock implements Block {
return data;
}
/**
* Sets the type of this block
*
* @param type Material to change this block to
*/
public void setType(final Material type) {
setTypeID(type.getID());
}
/**
* Sets the type-ID of this block
*
* @param type Type-ID to change this block to
*/
public void setType(final int type) {
public void setTypeID(final int type) {
this.type = type;
world.getHandle().d(x, y, z, type);
}
/**
* Gets the type of this block
*
* @return block type
*/
public Material getType() {
return Material.getMaterial(getTypeID());
}
/**
* Gets the type-ID of this block
*
* @return block type-ID
*/
public int getType() {
public int getTypeID() {
return type;
}