BOB - autosnap at fort phase
Anyone ever thought of modding BOB, so that the "End Reinforcement" button also takes a snap?  I'd love it.
			,
Conquer Club, a free online multiplayer variation of a popular world domination board game.
http://wwwespn.conquerclub.com/forum/
http://wwwespn.conquerclub.com/forum/viewtopic.php?f=528&t=198678
/* --- Confirmation Popups --- */
      if (((command == 'End Assaults' || command == 'End Reinforcement' || (command == 'Reinforce' && gameSettings.fortifications != eFortifications.UNLIMITED)) && myOptions.confirmEnds) || (command == 'Auto-Assault' && myOptions.confirmAutoAttack) || (command == 'Deploy' && myOptions.confirmDeploy)) {
         var message = "Are you sure you wish to " + command + "?";
         if (command == "Reinforce") {
            message = "Only one reinforcement possible, are you sure?";
         }
         if (confirm(message)) {
            if (command == 'Reinforce' || command == 'End Reinforcement' ) 
             {
                  document.getElementById('snapToChat').click();
                  alert('Snapshot taken');
             } 
            return newsendRequest(command);
         } else {
            return false;
         }
      } else {
         return newsendRequest(command);
      }