* added lock switch to all write actions

* added saveall command to save everything to disk
* added reload command to reload everything from disk
This commit is contained in:
Andy Buchholz
2011-05-08 17:16:43 +02:00
parent d38f855b28
commit bffa9df8f7
23 changed files with 154 additions and 4 deletions

View File

@@ -22,6 +22,11 @@ public class FCommandTitle extends FBaseCommand {
return;
}
if( isLocked() ) {
sendLockMessage();
return;
}
String playerName = parameters.get(0);
parameters.remove(0);
String title = TextUtil.implode(parameters);