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

Allowed the use of ; instead of | when specifying blocks.

Dieser Commit ist enthalten in:
sk89q 2010-11-26 21:33:17 -08:00
Ursprung 9ce9ed3657
Commit 76d7a14016

Datei anzeigen

@ -214,6 +214,7 @@ public class WorldEditListener extends PluginListener {
throws UnknownItemException, DisallowedItemException {
BlockType blockType;
arg = arg.replace("_", " ");
arg = arg.replace(";", "|");
String[] args0 = arg.split("\\|");
String[] args1 = args0[0].split(":", 2);
String testID = args1[0];