Skip to content

Commit

Permalink
Add some command aliases to RegionMemberCommands
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewoman committed Feb 19, 2013
1 parent dfb6114 commit e831b7f
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -45,7 +45,7 @@ public RegionMemberCommands(WorldGuardPlugin plugin) {
this.plugin = plugin;
}

@Command(aliases = {"addmember", "addmember"},
@Command(aliases = {"addmember", "addmember", "addmem", "am"},
usage = "<id> <members...>",
flags = "w:",
desc = "Add a member to a region",
Expand Down Expand Up @@ -96,7 +96,7 @@ public void addMember(CommandContext args, CommandSender sender) throws CommandE
}
}

@Command(aliases = {"addowner", "addowner"},
@Command(aliases = {"addowner", "addowner", "ao"},
usage = "<id> <owners...>",
flags = "w:",
desc = "Add an owner to a region",
Expand Down Expand Up @@ -160,7 +160,7 @@ public void addOwner(CommandContext args, CommandSender sender) throws CommandEx
}
}

@Command(aliases = {"removemember", "remmember", "removemem", "remmem"},
@Command(aliases = {"removemember", "remmember", "removemem", "remmem", "rm"},
usage = "<id> <owners...>",
flags = "w:",
desc = "Remove an owner to a region",
Expand Down Expand Up @@ -211,7 +211,7 @@ public void removeMember(CommandContext args, CommandSender sender) throws Comma
}
}

@Command(aliases = {"removeowner", "remowner"},
@Command(aliases = {"removeowner", "remowner", "ro"},
usage = "<id> <owners...>",
flags = "w:",
desc = "Remove an owner to a region",
Expand Down

0 comments on commit e831b7f

Please sign in to comment.