mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
Made the argument order for //contact and //expand consistent with the other commands.
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user