From e87b8a583b50838dfdc88ea3a37361a853afd690 Mon Sep 17 00:00:00 2001 From: Leonardo Santos Date: Sun, 27 Mar 2016 15:04:03 -0300 Subject: [PATCH] Update descriptions --- src/Commands/CommandClearInventory.cs | 2 +- src/Commands/CommandFreeze.cs | 2 +- src/Commands/CommandHome.cs | 2 +- src/Commands/CommandReply.cs | 2 +- src/Commands/CommandUnfreeze.cs | 2 +- src/Commands/CommandVote.cs | 2 +- src/Commands/MiscCommands.cs | 3 ++- src/NativeModules/Kit/Commands/CommandCreateKit.cs | 2 +- 8 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/Commands/CommandClearInventory.cs b/src/Commands/CommandClearInventory.cs index 253be887..c679b54b 100644 --- a/src/Commands/CommandClearInventory.cs +++ b/src/Commands/CommandClearInventory.cs @@ -28,7 +28,7 @@ namespace Essentials.Commands { [CommandInfo( Name = "clearinventory", - Description = "Clear your/player inventory", + Description = "Clear your/player's inventory", Aliases = new[] { "ci" }, Usage = "" )] diff --git a/src/Commands/CommandFreeze.cs b/src/Commands/CommandFreeze.cs index b5d2bab1..65beada3 100644 --- a/src/Commands/CommandFreeze.cs +++ b/src/Commands/CommandFreeze.cs @@ -31,7 +31,7 @@ namespace Essentials.Commands [CommandInfo( Name = "freeze", Usage = "[player/*]", - Description = "Freeze an player/* = all" + Description = "Freeze a player/everyone" )] public class CommandFreeze : EssCommand { diff --git a/src/Commands/CommandHome.cs b/src/Commands/CommandHome.cs index 106a3a5f..846e5e04 100644 --- a/src/Commands/CommandHome.cs +++ b/src/Commands/CommandHome.cs @@ -35,7 +35,7 @@ namespace Essentials.Commands [CommandInfo( Name = "home", Aliases = new[] { "h" }, - Description = "", + Description = "Teleport to your bed.", AllowedSource = AllowedSource.PLAYER )] public class CommandHome : EssCommand diff --git a/src/Commands/CommandReply.cs b/src/Commands/CommandReply.cs index ff554c51..29d304f1 100644 --- a/src/Commands/CommandReply.cs +++ b/src/Commands/CommandReply.cs @@ -32,7 +32,7 @@ namespace Essentials.Commands [CommandInfo( Name = "reply", Aliases = new[] {"r"}, - Description = "Reply an message", + Description = "Reply to the most recent private message", AllowedSource = AllowedSource.PLAYER, Usage = "[message]" )] diff --git a/src/Commands/CommandUnfreeze.cs b/src/Commands/CommandUnfreeze.cs index 756ea6b7..bd1639c3 100644 --- a/src/Commands/CommandUnfreeze.cs +++ b/src/Commands/CommandUnfreeze.cs @@ -31,7 +31,7 @@ namespace Essentials.Commands [CommandInfo( Name = "unfreeze", Usage = "[player/*]", - Description = "Unfreeze an player/* = all" + Description = "Unfreeze a player/everyone" )] public class CommandUnfreeze : EssCommand { diff --git a/src/Commands/CommandVote.cs b/src/Commands/CommandVote.cs index 39eb2295..30854737 100644 --- a/src/Commands/CommandVote.cs +++ b/src/Commands/CommandVote.cs @@ -29,7 +29,7 @@ namespace Essentials.Commands { [CommandInfo( Name = "vote", - Description = "Vote in current poll", + Description = "Vote in an pool", Usage = "[yes/no] [poll_name]", AllowedSource = AllowedSource.PLAYER )] diff --git a/src/Commands/MiscCommands.cs b/src/Commands/MiscCommands.cs index 0e801346..e073b4c7 100644 --- a/src/Commands/MiscCommands.cs +++ b/src/Commands/MiscCommands.cs @@ -194,6 +194,7 @@ CommandResult ClearCommand( ICommandSource src, ICommandArgs args, ICommand cmd [CommandInfo( Name = "item", + Description = "Give an item to you/another player", Usage = "[item] or [player|* = all] [item] [amount]", Aliases = new []{ "i" } )] @@ -270,7 +271,7 @@ CommandResult ItemCommand( ICommandSource src, ICommandArgs args, ICommand cmd ) [CommandInfo( Name = "iteminfo", Aliases = new [] {"ii"}, - Description = "See informations about an item.", + Description = "See information on an item.", Usage = "" )] CommandResult ItemInfoCommand( ICommandSource src, ICommandArgs args, ICommand cmd ) diff --git a/src/NativeModules/Kit/Commands/CommandCreateKit.cs b/src/NativeModules/Kit/Commands/CommandCreateKit.cs index 929aed41..b836d5a0 100644 --- a/src/NativeModules/Kit/Commands/CommandCreateKit.cs +++ b/src/NativeModules/Kit/Commands/CommandCreateKit.cs @@ -33,7 +33,7 @@ namespace Essentials.NativeModules.Kit.Commands [CommandInfo( Name = "createkit", Aliases = new [] {"ckit"}, - Description = "", + Description = "Create a kit.", Usage = "[name] ", AllowedSource = AllowedSource.PLAYER )]