public override void FinishPhase() { if (Phases.HasOnCombatPhaseEndEvents) { GenericSubPhase subphase = Phases.StartTemporarySubPhaseNew("Notification", typeof(NotificationSubPhase), StartCombatEndSubPhase); (subphase as NotificationSubPhase).TextToShow = "End of combat"; subphase.Start(); } else { StartCombatEndSubPhase(); } }
public override void FinishPhase() { if (Phases.HasOnActivationPhaseEnd) { GenericSubPhase subphase = Phases.StartTemporarySubPhaseNew("Notification", typeof(NotificationSubPhase), StartActivationEndSubPhase); (subphase as NotificationSubPhase).TextToShow = "End of Activation "; subphase.Start(); } else { StartActivationEndSubPhase(); } }