Altered punctuation on several command's descriptions. Teleport's description altered to state it sends the provided player, or self if no player specified.

This commit is contained in:
Aki Tensai 2011-07-16 13:59:32 -06:00
parent 935f987a4d
commit 6a6d1a2a10
9 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@ public class EnvironmentCommand extends Command {
public EnvironmentCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "List Environments";
this.commandDesc = "Lists valid known environments";
this.commandDesc = "Lists valid known environments.";
this.commandUsage = "/mvenv";
this.minimumArgLength = 0;
this.maximumArgLength = 0;

View File

@ -18,7 +18,7 @@ public class HelpCommand extends Command {
public HelpCommand(JavaPlugin plugin) {
super(plugin);
this.commandName = "Get Help with Multiverse";
this.commandDesc = "Displays a nice help menu";
this.commandDesc = "Displays a nice help menu.";
this.commandUsage = "/mv " + ChatColor.GOLD + "[PAGE #]";
this.minimumArgLength = 0;
this.maximumArgLength = 1;

View File

@ -18,7 +18,7 @@ public class ModifyAddCommand extends Command {
public ModifyAddCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Modify a World (Add a value)";
this.commandDesc = "Modify various aspects of worlds. See the help wiki for how to use this command properly. If you do not include a world, the current world will be used";
this.commandDesc = "Modify various aspects of worlds. See the help wiki for how to use this command properly. If you do not include a world, the current world will be used.";
this.commandUsage = "/mvmodify " + ChatColor.GREEN + "ADD {VALUE} {PROPERTY}" + ChatColor.GOLD + " [WORLD] ";
this.minimumArgLength = 2;
this.maximumArgLength = 3;

View File

@ -15,7 +15,7 @@ public class ModifyClearCommand extends Command {
public ModifyClearCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Modify a World (Clear a property)";
this.commandDesc = "Removes all values from a property. This will work on properties that contain lists";
this.commandDesc = "Removes all values from a property. This will work on properties that contain lists.";
this.commandUsage = "/mvmodify" + ChatColor.GREEN + " CLEAR {PROPERTY}" + ChatColor.GOLD + " [WORLD] ";
this.minimumArgLength = 1;
this.maximumArgLength = 2;

View File

@ -15,7 +15,7 @@ public class ModifyRemoveCommand extends Command {
public ModifyRemoveCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Modify a World";
this.commandDesc = "Modify various aspects of worlds. See the help wiki for how to use this command properly. If you do not include a world, the current world will be used";
this.commandDesc = "Modify various aspects of worlds. See the help wiki for how to use this command properly. If you do not include a world, the current world will be used.";
this.commandUsage = "/mvmodify" + ChatColor.GREEN + "REMOVE {PROPERTY} {VALUE}" + ChatColor.GOLD + " [WORLD]";
this.minimumArgLength = 2;
this.maximumArgLength = 3;

View File

@ -15,7 +15,7 @@ public class ModifySetCommand extends Command {
public ModifySetCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Modify a World (Set a value)";
this.commandDesc = "Modify various aspects of worlds. See the help wiki for how to use this command properly. If you do not include a world, the current world will be used";
this.commandDesc = "Modify various aspects of worlds. See the help wiki for how to use this command properly. If you do not include a world, the current world will be used.";
this.commandUsage = "/mvmodify" + ChatColor.GREEN + " set {PROPERTY} {VALUE}" + ChatColor.GOLD + " [WORLD]";
this.minimumArgLength = 2;
this.maximumArgLength = 3;

View File

@ -13,7 +13,7 @@ public class ReloadCommand extends Command {
public ReloadCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Reload";
this.commandDesc = "Reloads worlds.yml and config.yml";
this.commandDesc = "Reloads worlds.yml and config.yml.";
this.commandUsage = "/mvreload";
this.minimumArgLength = 0;
this.maximumArgLength = 0;

View File

@ -21,7 +21,7 @@ public class TeleportCommand extends Command {
public TeleportCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Teleport";
this.commandDesc = "Teleports you to a different world.";
this.commandDesc = "Teleports target player to a different world. If no player is specified, teleports you instead.";
this.commandUsage = "/mvtp " + ChatColor.GOLD + "[PLAYER]" + ChatColor.GREEN + " {WORLD}";
this.minimumArgLength = 1;
this.maximumArgLength = 2;

View File

@ -18,7 +18,7 @@ public class WhoCommand extends Command {
public WhoCommand(MultiverseCore plugin) {
super(plugin);
this.commandName = "Who";
this.commandDesc = "States who is in what world";
this.commandDesc = "States who is in what world.";
this.commandUsage = "/mvwho" + ChatColor.GOLD + " [WORLD]";
this.minimumArgLength = 0;
this.maximumArgLength = 1;