Now using com.sk89q.worldedit.blocks.BlockType for block type queries. rawSetBlock() now handles changes in block data. WorldEdit.getBlock() now supports specifying data and sign text.

This commit is contained in:
sk89q
2010-10-15 00:22:03 -07:00
parent 47efbb6b18
commit ebb25ff41c
5 changed files with 243 additions and 22 deletions

View File

@@ -56,7 +56,7 @@ public class BaseBlock {
/**
* @return the type
*/
public int getType() {
public int getID() {
return (int)type;
}