public ICombatStatus getStatus()
 {
     if (combat == null) //Game loaded without combat being loaded normally
     {
         combatCountdown = 0;
         isCombat(); //This will cause it to init the combatCountdown properly
         combat = combatDirector.getCombat();
     }
     return(combat.getStatus());
 }