Skip to content

Commit

Permalink
Update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardosnt committed Mar 27, 2016
1 parent d44a8fb commit e87b8a5
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Commands/CommandClearInventory.cs
Expand Up @@ -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 = "<player>"
)]
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CommandFreeze.cs
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CommandHome.cs
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CommandReply.cs
Expand Up @@ -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]"
)]
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CommandUnfreeze.cs
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CommandVote.cs
Expand Up @@ -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
)]
Expand Down
3 changes: 2 additions & 1 deletion src/Commands/MiscCommands.cs
Expand Up @@ -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] <amount> or [player|* = all] [item] [amount]",
Aliases = new []{ "i" }
)]
Expand Down Expand Up @@ -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 = "<item_id>"
)]
CommandResult ItemInfoCommand( ICommandSource src, ICommandArgs args, ICommand cmd )
Expand Down
2 changes: 1 addition & 1 deletion src/NativeModules/Kit/Commands/CommandCreateKit.cs
Expand Up @@ -33,7 +33,7 @@ namespace Essentials.NativeModules.Kit.Commands
[CommandInfo(
Name = "createkit",
Aliases = new [] {"ckit"},
Description = "",
Description = "Create a kit.",
Usage = "[name] <cooldown> <resetCooldownWhenDie> <cost>",
AllowedSource = AllowedSource.PLAYER
)]
Expand Down

0 comments on commit e87b8a5

Please sign in to comment.