}
}
private void tryExecuteCommand(Object object) {
try {
GameCommand command = (GameCommand) object;
ReInjector.getInstance().reInject(command);
if (command.isAllowed()) {
command.execute();
updateUsers();
} else {
System.err.println(command + " not allowed"); //$NON-NLS-1$
}
} catch (Exception e) {