Skip to content

Commit

Permalink
Update Give and Take in the CommandRegistry
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Sep 11, 2013
1 parent d92be7c commit 6e3244f
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -859,7 +859,7 @@ public void registerCoreMembers() {

// <--[command]
// @Name Give
// @Usage give [money/<item>] (qty:<#>) (engrave) (to:<inventory>)
// @Usage give [money/<item>|...] (qty:<#>) (engrave) (to:<inventory>)
// @Required 1
// @Stable Todo
// @Short Gives the player an item.
Expand All @@ -874,7 +874,7 @@ public void registerCoreMembers() {
// Todo
// -->
registerCoreMember(GiveCommand.class,
"GIVE", "give [money/<item>] (qty:<#>) (engrave) (to:<inventory>)", 1);
"GIVE", "give [money/<item>|...] (qty:<#>) (engrave) (to:<inventory>)", 1);

// <--[command]
// @Name Group
Expand Down Expand Up @@ -1723,7 +1723,7 @@ public void registerCoreMembers() {

// <--[command]
// @Name Take
// @Usage take [money/iteminhand/<item>] (qty:<#>) (from:<inventory>)
// @Usage take [money/iteminhand/<item>|...] (qty:<#>) (from:<inventory>)
// @Required 1
// @Stable Todo
// @Short Takes an item from the player.
Expand All @@ -1738,7 +1738,7 @@ public void registerCoreMembers() {
// Todo
// -->
registerCoreMember(TakeCommand.class,
"TAKE", "take [money/iteminhand/<item>] (qty:<#>) (from:<inventory>)", 1);
"TAKE", "take [money/iteminhand/<item>|...] (qty:<#>) (from:<inventory>)", 1);

// <--[command]
// @Name Teleport
Expand Down

0 comments on commit 6e3244f

Please sign in to comment.