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

Made the argument order for //contact and //expand consistent with the other commands.

Dieser Commit ist enthalten in:
sk89q 2010-11-04 23:51:42 -07:00
Ursprung c7a122a001
Commit 6c71e6046b

Datei anzeigen

@ -834,13 +834,11 @@ public class WorldEditController {
} else if (split[0].equalsIgnoreCase("//expand")) {
checkArgs(split, 1, 2, split[0]);
Vector dir;
int change;
int change = Integer.parseInt(split[1]);
if (split.length == 3) {
dir = getDirection(player, split[1].toLowerCase());
change = Integer.parseInt(split[2]);
dir = getDirection(player, split[2].toLowerCase());
} else {
dir = getDirection(player, "me");
change = Integer.parseInt(split[1]);
}
Region region = session.getRegion();
@ -856,13 +854,11 @@ public class WorldEditController {
} else if (split[0].equalsIgnoreCase("//contract")) {
checkArgs(split, 1, 2, split[0]);
Vector dir;
int change;
int change = Integer.parseInt(split[1]);
if (split.length == 3) {
dir = getDirection(player, split[1].toLowerCase());
change = Integer.parseInt(split[2]);
dir = getDirection(player, split[2].toLowerCase());
} else {
dir = getDirection(player, "me");
change = Integer.parseInt(split[1]);
}
Region region = session.getRegion();