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