Added //-prefixed aliases for most /-prefixed commands

This commit is contained in:
TomyLobo 2011-08-21 22:31:42 +02:00
parent a9498d2c68
commit d12bff993b
3 changed files with 13 additions and 13 deletions

View File

@ -104,7 +104,7 @@ public class GeneralCommands {
} }
@Command( @Command(
aliases = {"toggleplace"}, aliases = { "/toggleplace", "toggleplace" },
usage = "", usage = "",
desc = "", desc = "",
min = 0, min = 0,
@ -122,7 +122,7 @@ public class GeneralCommands {
} }
@Command( @Command(
aliases = {"searchitem", "/l", "search"}, aliases = { "/searchitem", "/l", "/search", "searchitem", "search" },
usage = "<query>", usage = "<query>",
flags = "bi", flags = "bi",
desc = "Search for an item", desc = "Search for an item",

View File

@ -82,7 +82,7 @@ public class HistoryCommands {
} }
@Command( @Command(
aliases = {"clearhistory"}, aliases = { "/clearhistory", "clearhistory" },
usage = "", usage = "",
desc = "Clear your history", desc = "Clear your history",
min = 0, min = 0,

View File

@ -119,7 +119,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"fixlava"}, aliases = { "/fixlava", "fixlava" },
usage = "<radius>", usage = "<radius>",
desc = "Fix lava to be stationary", desc = "Fix lava to be stationary",
min = 1, min = 1,
@ -139,7 +139,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"fixwater"}, aliases = { "/fixwater", "fixwater" },
usage = "<radius>", usage = "<radius>",
desc = "Fix water to be stationary", desc = "Fix water to be stationary",
min = 1, min = 1,
@ -159,7 +159,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"removeabove"}, aliases = { "/removeabove", "removeabove" },
usage = "[size] [height] ", usage = "[size] [height] ",
desc = "Remove blocks above your head. ", desc = "Remove blocks above your head. ",
min = 0, min = 0,
@ -181,7 +181,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"removebelow"}, aliases = { "/removebelow", "removebelow" },
usage = "[size] [height] ", usage = "[size] [height] ",
desc = "Remove blocks below your head. ", desc = "Remove blocks below your head. ",
min = 0, min = 0,
@ -203,7 +203,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"removenear"}, aliases = { "/removenear", "removenear" },
usage = "<block> [size] ", usage = "<block> [size] ",
desc = "Remove blocks near you.", desc = "Remove blocks near you.",
min = 1, min = 1,
@ -225,7 +225,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"replacenear"}, aliases = { "/replacenear", "replacenear" },
usage = "<size> <from-id> <to-id> ", usage = "<size> <from-id> <to-id> ",
desc = "Replace nearby blocks", desc = "Replace nearby blocks",
min = 3, min = 3,
@ -258,7 +258,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"snow"}, aliases = { "/snow", "snow" },
usage = "[radius]", usage = "[radius]",
desc = "Simulates snow", desc = "Simulates snow",
min = 0, min = 0,
@ -277,7 +277,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"thaw"}, aliases = { "/thaw", "thaw" },
usage = "[radius]", usage = "[radius]",
desc = "Thaws the area", desc = "Thaws the area",
min = 0, min = 0,
@ -296,7 +296,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"green"}, aliases = { "/green", "green" },
usage = "[radius]", usage = "[radius]",
desc = "Greens the area", desc = "Greens the area",
min = 0, min = 0,
@ -315,7 +315,7 @@ public class UtilityCommands {
} }
@Command( @Command(
aliases = {"ex", "ext", "extinguish"}, aliases = { "/ex", "/ext", "/extinguish", "ex", "ext", "extinguish" },
usage = "[radius]", usage = "[radius]",
desc = "Extinguish nearby fire", desc = "Extinguish nearby fire",
min = 0, min = 0,