@Override
 public boolean onAction(
     final InteractiveElementAction action, final InteractiveElementUser user) {
   if (action != InteractiveElementAction.ACTIVATE) {
     return false;
   }
   final KrosmozGame game = KrosmozGame.byId(this.m_boardParameters.getGameId());
   if (WakfuGameCalendar.getInstance().getDate().before(game.getUnlockDate())) {
     return false;
   }
   SWFWrapper.INSTANCE.toggleDisplay(game);
   return true;
 }