3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

add a bunch of // aliases for commands

Dieser Commit ist enthalten in:
dordsor21 2020-04-19 11:43:30 +01:00
Ursprung 415e91b519
Commit 7b9a64e9a6
10 geänderte Dateien mit 32 neuen und 8 gelöschten Zeilen

Datei anzeigen

@ -111,6 +111,7 @@ public class BiomeCommands {
@Command(
name = "biomeinfo",
desc = "Get the biome of the targeted block.",
aliases = { "/biomeinfo" },
descFooter = "By default, uses all blocks in your selection."
)
@CommandPermissions("worldedit.biome.info")

Datei anzeigen

@ -77,6 +77,7 @@ public class ChunkCommands {
@Command(
name = "chunkinfo",
aliases = { "/chunkinfo" },
desc = "Get information about the chunk you're inside"
)
@CommandPermissions("worldedit.chunkinfo")
@ -93,6 +94,7 @@ public class ChunkCommands {
@Command(
name = "listchunks",
aliases = { "/listchunks" },
desc = "List chunks that your selection includes"
)
@CommandPermissions("worldedit.listchunks")
@ -106,6 +108,7 @@ public class ChunkCommands {
@Command(
name = "delchunks",
aliases = { "/delchunks" },
desc = "Delete chunks that your selection includes"
)
@CommandPermissions("worldedit.delchunks")

Datei anzeigen

@ -272,6 +272,7 @@ public class ClipboardCommands {
@Command(
name = "download",
aliases = { "/download" },
desc = "Downloads your clipboard through the configured web interface"
)
@Deprecated
@ -537,6 +538,7 @@ public class ClipboardCommands {
@Command(
name = "clearclipboard",
aliases = { "/clearclipboard", "/cc", "/clearclip" },
desc = "Clear your clipboard"
)
@CommandPermissions("worldedit.clipboard.clear")

Datei anzeigen

@ -304,6 +304,7 @@ public class GenerationCommands {
@Command(
name = "forestgen",
aliases = { "/forestgen" },
desc = "Generate a forest"
)
@CommandPermissions("worldedit.generation.forest")
@ -325,6 +326,7 @@ public class GenerationCommands {
@Command(
name = "pumpkins",
aliases = { "/pumpkins" },
desc = "Generate pumpkin patches"
)
@CommandPermissions("worldedit.generation.pumpkins")

Datei anzeigen

@ -57,7 +57,7 @@ public class NavigationCommands {
@Command(
name = "unstuck",
aliases = { "!" },
aliases = { "!", "/unstuck" },
desc = "Escape from being stuck inside a block"
)
@CommandPermissions("worldedit.navigation.unstuck")
@ -68,7 +68,7 @@ public class NavigationCommands {
@Command(
name = "ascend",
aliases = { "asc" },
aliases = { "asc", "/asc", "/ascend" },
desc = "Go up a floor"
)
@CommandPermissions("worldedit.navigation.ascend")
@ -91,7 +91,7 @@ public class NavigationCommands {
@Command(
name = "descend",
aliases = { "desc" },
aliases = { "desc", "/desc", "/descend" },
desc = "Go down a floor"
)
@CommandPermissions("worldedit.navigation.descend")
@ -114,6 +114,7 @@ public class NavigationCommands {
@Command(
name = "ceil",
aliases = { "/ceil", "/ceiling" },
desc = "Go to the ceiling"
)
@CommandPermissions("worldedit.navigation.ceiling")
@ -137,6 +138,7 @@ public class NavigationCommands {
@Command(
name = "thru",
aliases = { "/thru" },
desc = "Pass through walls"
)
@CommandPermissions("worldedit.navigation.thru.command")
@ -150,7 +152,7 @@ public class NavigationCommands {
@Command(
name = "jumpto",
aliases = { "j" },
aliases = { "j", "/jumpto", "/j" },
desc = "Teleport to a location"
)
@CommandPermissions("worldedit.navigation.jumpto.command")
@ -173,6 +175,7 @@ public class NavigationCommands {
@Command(
name = "up",
aliases = { "/up" },
desc = "Go upwards some distance"
)
@CommandPermissions("worldedit.navigation.up")

Datei anzeigen

@ -59,6 +59,7 @@ public class ScriptingCommands {
@Command(
name = "cs",
aliases = { "/cs" },
desc = "Execute a CraftScript"
)
@CommandPermissions("worldedit.scripting.execute")
@ -84,6 +85,7 @@ public class ScriptingCommands {
@Command(
name = ".s",
aliases = { "/.s" },
desc = "Execute last CraftScript"
)
@CommandPermissions("worldedit.scripting.execute")

Datei anzeigen

@ -307,6 +307,7 @@ public class SelectionCommands {
@Command(
name = "toggleeditwand",
aliases = { "/toggleeditwand" },
desc = "Remind the user that the wand is now a tool and can be unbound with /none."
)
@CommandPermissions("worldedit.wand.toggle")

Datei anzeigen

@ -161,6 +161,7 @@ public class ToolCommands {
@Command(
name = "info",
aliases = { "/info" },
desc = "Block information tool"
)
@CommandPermissions("worldedit.tool.info")
@ -173,6 +174,7 @@ public class ToolCommands {
@Command(
name = "inspect",
aliases = { "/inspect" },
desc = "Inspect edits within a radius"
)
@CommandPermissions("worldedit.tool.inspect")
@ -184,6 +186,7 @@ public class ToolCommands {
@Command(
name = "tree",
aliases = { "/tree" },
desc = "Tree generator tool"
)
@CommandPermissions("worldedit.tool.tree")
@ -198,6 +201,7 @@ public class ToolCommands {
@Command(
name = "repl",
aliases = { "/repl" },
desc = "Block replacer tool"
)
@CommandPermissions("worldedit.tool.replacer")
@ -212,6 +216,7 @@ public class ToolCommands {
@Command(
name = "cycler",
aliases = { "/cycler" },
desc = "Block data cycler tool"
)
@CommandPermissions("worldedit.tool.data-cycler")
@ -224,7 +229,7 @@ public class ToolCommands {
@Command(
name = "floodfill",
aliases = { "flood" },
aliases = { "flood", "/flood", "/floodfill" },
desc = "Flood fill tool"
)
@CommandPermissions("worldedit.tool.flood-fill")
@ -248,6 +253,7 @@ public class ToolCommands {
@Command(
name = "deltree",
aliases = { "/deltree" },
desc = "Floating tree remover tool"
)
@CommandPermissions("worldedit.tool.deltree")
@ -260,6 +266,7 @@ public class ToolCommands {
@Command(
name = "farwand",
aliases = { "/warwand" },
desc = "Wand at a distance tool"
)
@CommandPermissions("worldedit.tool.farwand")

Datei anzeigen

@ -192,6 +192,7 @@ public class ToolUtilCommands {
@Command(
name = "primary",
aliases = { "/primary" },
desc = "Set the right click brush",
descFooter = "Set the right click brush"
)
@ -212,6 +213,7 @@ public class ToolUtilCommands {
@Command(
name = "secondary",
aliases = { "/secondary" },
desc = "Set the left click brush",
descFooter = "Set the left click brush"
)
@ -233,7 +235,7 @@ public class ToolUtilCommands {
@Command(
name = "visualize",
aliases = {"visual", "vis"},
aliases = {"visual", "vis", "/visualize", "/visual", "/vis"},
desc = "Toggle between different visualization modes",
descFooter = "Toggle between different visualization modes\n" +
"0 = No visualization\n" +
@ -258,7 +260,7 @@ public class ToolUtilCommands {
@Command(
name = "target",
aliases = {"tar"},
aliases = {"tar", "/target", "/tar"},
desc = "Toggle between different target modes"
)
@CommandPermissions("worldedit.brush.target")

Datei anzeigen

@ -544,6 +544,7 @@ public class UtilityCommands {
@Command(
name = "butcher",
aliases = { "/butcher" },
desc = "Kill all or nearby mobs"
)
@CommandPermissions("worldedit.butcher")
@ -606,7 +607,7 @@ public class UtilityCommands {
@Command(
name = "remove",
aliases = { "rem", "rement" },
aliases = { "rem", "rement", "/remove", "/rem", "/rement" },
desc = "Remove all entities of a type"
)
@CommandPermissions("worldedit.remove")