3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

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

Dieser Commit ist enthalten in:
sk89q 2010-11-06 09:45:36 -07:00
Ursprung 01340152e3
Commit e2731bf834

Datei anzeigen

@ -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) {