Commands now also use hMod to resolve block names into block IDs.

This commit is contained in:
sk89q 2010-11-06 09:45:36 -07:00
parent 01340152e3
commit e2731bf834

View File

@ -224,6 +224,12 @@ public class WorldEditListener extends PluginListener {
blockType = BlockType.fromID(Integer.parseInt(testID));
} catch (NumberFormatException e) {
blockType = BlockType.lookup(testID);
if (blockType == null) {
int t = etc.getDataSource().getItem(testID);
if (t > 0 && t < 256) {
blockType = BlockType.fromID(t);
}
}
}
if (blockType == null) {