reload and save commands now don't require it to be a player executing them

This commit is contained in:
Brettflan 2011-06-08 16:19:02 -05:00
parent 3b5471d465
commit d0a405ff95
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ public class FCommandReload extends FBaseCommand {
public FCommandReload() {
aliases.add("reload");
senderMustBePlayer = false;
optionalParameters.add("file");
helpDescription = "reloads all json files, or a specific one";

View File

@ -9,6 +9,8 @@ public class FCommandSaveAll extends FBaseCommand {
aliases.add("saveall");
aliases.add("save");
senderMustBePlayer = false;
helpDescription = "save factions to disk";
}