From c6b364eaed933b5110c522bb508d93908f532e60 Mon Sep 17 00:00:00 2001 From: Alex Sosnovsky <60436249+alexsosnovsky@users.noreply.github.com> Date: Wed, 2 Nov 2022 00:47:38 -0400 Subject: [PATCH] Reintroduce legacy map pool command aliases Signed-off-by: Alex Sosnovsky <60436249+alexsosnovsky@users.noreply.github.com> --- core/src/main/java/tc/oc/pgm/command/MapPoolCommand.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/tc/oc/pgm/command/MapPoolCommand.java b/core/src/main/java/tc/oc/pgm/command/MapPoolCommand.java index 6759d48cb1..3843a1e95f 100644 --- a/core/src/main/java/tc/oc/pgm/command/MapPoolCommand.java +++ b/core/src/main/java/tc/oc/pgm/command/MapPoolCommand.java @@ -43,7 +43,7 @@ public final class MapPoolCommand { private static final DecimalFormat SCORE_FORMAT = new DecimalFormat("00.00%"); @Command( - aliases = {"pool"}, + aliases = {"pool", "rotation", "rot"}, desc = "List the maps in the map pool", usage = "[page] [-p pool] [-s scores] [-c chance of vote]") public static void pool( @@ -127,7 +127,7 @@ public Component format(MapInfo map, int index) { } @Command( - aliases = {"pools"}, + aliases = {"pools", "rotations", "rots"}, desc = "List all the map pools", flags = "d") public static void pools( @@ -204,7 +204,7 @@ public Component format(MapPool mapPool, int index) { } @Command( - aliases = {"setpool"}, + aliases = {"setpool", "setrot"}, desc = "Change the map pool", usage = "[pool name] -r (revert to dynamic) -t (time limit for map pool) -m (match # limit)", flags = "rtm",