geforkt von Mirrors/FastAsyncWorldEdit
Whitespace police
Dieser Commit ist enthalten in:
Ursprung
7b306160d7
Commit
46e37017bf
@ -50,28 +50,22 @@ public class SelectionCommands {
|
|||||||
public static void pos1(CommandContext args, WorldEdit we,
|
public static void pos1(CommandContext args, WorldEdit we,
|
||||||
LocalSession session, LocalPlayer player, EditSession editSession)
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
||||||
throws WorldEditException {
|
throws WorldEditException {
|
||||||
|
|
||||||
Vector pos;
|
Vector pos;
|
||||||
|
|
||||||
if(args.argsLength() == 1)
|
if (args.argsLength() == 1) {
|
||||||
{
|
if (args.getString(0).matches("-?\\d+,-?\\d+,-?\\d+")) {
|
||||||
if(args.getString(0).matches("-?\\d+,-?\\d+,-?\\d+"))
|
String[] coords = args.getString(0).split(",");
|
||||||
{
|
pos = new Vector(Integer.parseInt(coords[0]), Integer.parseInt(coords[1]), Integer.parseInt(coords[2]));
|
||||||
String[] coords = args.getString(0).split(",");
|
} else {
|
||||||
pos = new Vector(Integer.parseInt(coords[0]),
|
player.printError("Invalid coordinates " + args.getString(0));
|
||||||
Integer.parseInt(coords[1]),
|
return;
|
||||||
Integer.parseInt(coords[2]));
|
}
|
||||||
}
|
} else {
|
||||||
else
|
pos = player.getBlockIn();
|
||||||
{
|
}
|
||||||
player.printError("Invalid coordinates " + args.getString(0));
|
|
||||||
return;
|
if (!session.getRegionSelector(player.getWorld()).selectPrimary(pos)) {
|
||||||
}
|
|
||||||
}
|
|
||||||
else pos = player.getBlockIn();
|
|
||||||
|
|
||||||
if (!session.getRegionSelector(player.getWorld())
|
|
||||||
.selectPrimary(pos)) {
|
|
||||||
player.printError("Position already set.");
|
player.printError("Position already set.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -91,27 +85,23 @@ public class SelectionCommands {
|
|||||||
public static void pos2(CommandContext args, WorldEdit we,
|
public static void pos2(CommandContext args, WorldEdit we,
|
||||||
LocalSession session, LocalPlayer player, EditSession editSession)
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
||||||
throws WorldEditException {
|
throws WorldEditException {
|
||||||
|
|
||||||
Vector pos;
|
|
||||||
if(args.argsLength() == 1)
|
|
||||||
{
|
|
||||||
if(args.getString(0).matches("-?\\d+,-?\\d+,-?\\d+"))
|
|
||||||
{
|
|
||||||
String[] coords = args.getString(0).split(",");
|
|
||||||
pos = new Vector(Integer.parseInt(coords[0]),
|
|
||||||
Integer.parseInt(coords[1]),
|
|
||||||
Integer.parseInt(coords[2]));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
player.printError("Invalid coordinates " + args.getString(0));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else pos = player.getBlockIn();
|
|
||||||
|
|
||||||
if (!session.getRegionSelector(player.getWorld())
|
Vector pos;
|
||||||
.selectSecondary(pos)) {
|
if(args.argsLength() == 1) {
|
||||||
|
if(args.getString(0).matches("-?\\d+,-?\\d+,-?\\d+")) {
|
||||||
|
String[] coords = args.getString(0).split(",");
|
||||||
|
pos = new Vector(Integer.parseInt(coords[0]),
|
||||||
|
Integer.parseInt(coords[1]),
|
||||||
|
Integer.parseInt(coords[2]));
|
||||||
|
} else {
|
||||||
|
player.printError("Invalid coordinates " + args.getString(0));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
pos = player.getBlockIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!session.getRegionSelector(player.getWorld()).selectSecondary(pos)) {
|
||||||
player.printError("Position already set.");
|
player.printError("Position already set.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren