mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-25 20:16:06 +01:00
Merge pull request #40 from AkiTensai/Aki_ModifyCopy
Fixed grammer in command descriptions.
This commit is contained in:
commit
7754f470c7
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -14,7 +14,7 @@ public class SpawnCommand extends Command {
|
||||
public SpawnCommand(MultiverseCore plugin) {
|
||||
super(plugin);
|
||||
this.commandName = "Spawn";
|
||||
this.commandDesc = "Transports the player to the that player's current world Spawn Point.";
|
||||
this.commandDesc = "Teleports target player to the Spawn Point of the world they are in.";
|
||||
this.commandUsage = "/mvspawn" + ChatColor.GOLD + " [PLAYER]";
|
||||
this.minimumArgLength = 0;
|
||||
this.maximumArgLength = 1;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user