Add /f vault description.

This commit is contained in:
Trent Hensler
2016-05-30 16:25:27 -07:00
parent 0294a60675
commit 9f89010af1
2 changed files with 4 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ public class CmdVault extends FCommand {
int max = myFaction.getMaxVaults();
if (number > max) {
me.sendMessage(TL.COMMAND_VAULTS_TOOHIGH.format(number, max));
me.sendMessage(TL.COMMAND_VAULT_TOOHIGH.format(number, max));
return;
}
@@ -79,6 +79,6 @@ public class CmdVault extends FCommand {
@Override
public TL getUsageTranslation() {
return TL.COMMAND_VERSION_DESCRIPTION;
return TL.COMMAND_VAULT_DESCRIPTION;
}
}