mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
parent
a37ab10414
commit
228c37815a
@ -54,8 +54,8 @@ import java.util.UUID;
|
|||||||
confirmation = true)
|
confirmation = true)
|
||||||
public class Merge extends SubCommand {
|
public class Merge extends SubCommand {
|
||||||
|
|
||||||
public static final String[] values = new String[] {"north", "east", "south", "west", "auto"};
|
public static final String[] values = new String[] {"north", "east", "south", "west"};
|
||||||
public static final String[] aliases = new String[] {"n", "e", "s", "w", "all"};
|
public static final String[] aliases = new String[] {"n", "e", "s", "w"};
|
||||||
|
|
||||||
public static String direction(float yaw) {
|
public static String direction(float yaw) {
|
||||||
yaw = yaw / 90;
|
yaw = yaw / 90;
|
||||||
@ -112,6 +112,10 @@ public class Merge extends SubCommand {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (direction == null && (args[0].equalsIgnoreCase("all") || args[1]
|
||||||
|
.equalsIgnoreCase("auto"))) {
|
||||||
|
direction = Direction.ALL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (direction == null) {
|
if (direction == null) {
|
||||||
MainUtil.sendMessage(player, Captions.COMMAND_SYNTAX,
|
MainUtil.sendMessage(player, Captions.COMMAND_SYNTAX,
|
||||||
|
Loading…
Reference in New Issue
Block a user