* 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

@@ -21,6 +21,11 @@ public class FRelationCommand extends FBaseCommand {
return;
}
if( isLocked() ) {
sendLockMessage();
return;
}
if ( ! assertMinRole(Role.MODERATOR)) {
return;
}