Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Made the argument order for //contact and //expand consistent with the other commands.
Dieser Commit ist enthalten in:
Ursprung
c7a122a001
Commit
6c71e6046b
@ -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();
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren