* Completes handling the supportanswer action.
*
* @param currentTurn ignored
*/
public void onTurnReached(int currentTurn) {
StoreMessageCommand checkcommand = DBCommandQueue.get().getOneResult(StoreMessageCommand.class, handle);
if (checkcommand == null) {
TurnNotifier.get().notifyInTurns(0, new TurnListenerDecorator(this));
return;
}
boolean characterExists = checkcommand.targetCharacterExists();
String adminName = checkcommand.getSource();
String target = checkcommand.getTarget();
String supportmessage = checkcommand.getMessage();
final Player admin = SingletonRepository.getRuleProcessor().getPlayer(adminName);
if(!characterExists) {
if (admin != null) {