* 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

@@ -15,6 +15,12 @@ public class FCommandKick extends FBaseCommand {
}
public void perform() {
if( isLocked() ) {
sendLockMessage();
return;
}
String playerName = parameters.get(0);
FPlayer you = findFPlayer(playerName, false);