Fix some more typos

This commit is contained in:
boy0001 2015-08-02 16:50:53 +10:00
parent 16fbd373c9
commit 8e1d42d4c5
4 changed files with 5 additions and 4 deletions

View File

@ -35,9 +35,10 @@ import com.plotsquared.general.commands.Argument;
import com.plotsquared.general.commands.CommandDeclaration; import com.plotsquared.general.commands.CommandDeclaration;
@CommandDeclaration( @CommandDeclaration(
command = "/plot regenallroads <world>", command = "regenallroads",
description = "Regenerate all roads in the map using the set road schematic", description = "Regenerate all roads in the map using the set road schematic",
aliases = {"rgar"}, aliases = {"rgar"},
usage = "/plot regenallroads <world>",
category = CommandCategory.DEBUG, category = CommandCategory.DEBUG,
requiredType = RequiredType.CONSOLE, requiredType = RequiredType.CONSOLE,
permission = "plots.regenallroads" permission = "plots.regenallroads"

View File

@ -58,7 +58,7 @@ public class Update extends SubCommand {
} }
} }
else { else {
MainUtil.sendMessage(plr, C.COMMAND_SYNTAX, getUsage()); MainUtil.sendMessage(plr, C.COMMAND_SYNTAX, getUsage().replaceAll("\\{label\\}", "plot"));
return false; return false;
} }
if (url == null) { if (url == null) {

View File

@ -12,7 +12,7 @@ public class HelpObject {
public HelpObject(final Command command, String label) { public HelpObject(final Command command, String label) {
this._command = command; this._command = command;
this._rendered = StringMan.replaceAll(C.HELP_ITEM.s(), "%usage%", _command.getUsage(), "[%alias%]", _command.getAliases().size() > 0 ? "(" + StringMan.join(_command.getAliases(), "|") + ")" : "","%desc%", _command.getDescription(),"%arguments%", buildArgumentList(_command.getRequiredArguments()), "{label}", label); this._rendered = StringMan.replaceAll(C.HELP_ITEM.s(), "%usage%", _command.getUsage().replaceAll("\\{label\\}", label), "[%alias%]", _command.getAliases().size() > 0 ? "(" + StringMan.join(_command.getAliases(), "|") + ")" : "","%desc%", _command.getDescription(),"%arguments%", buildArgumentList(_command.getRequiredArguments()), "{label}", label);
} }
@Override @Override

View File

@ -119,7 +119,7 @@ public class CommandManager<T extends CommandCaller> {
} }
} }
if (!success) { if (!success) {
String usage = cmd.getUsage(); String usage = cmd.getUsage().replaceAll("\\{label\\}", parts[0]);
C.COMMAND_SYNTAX.send(plr, cmd.getUsage()); C.COMMAND_SYNTAX.send(plr, cmd.getUsage());
return CommandHandlingOutput.WRONG_USAGE; return CommandHandlingOutput.WRONG_USAGE;
} }