diff --git a/Qwilight/System/TwilightSystem.cs b/Qwilight/System/TwilightSystem.cs index f817c54..5575042 100644 --- a/Qwilight/System/TwilightSystem.cs +++ b/Qwilight/System/TwilightSystem.cs @@ -344,15 +344,15 @@ ViewModels.Instance.NotifyValue.PassNotifyItemCollection.Insert(0, passNotifyItem); } }); - if (passNotifyItems.Length > 1) - { - NotifySystem.Instance.NotifyPendingPassNotify(); - } - else + if (passNotifyItems.Length == 1) { var passNotifyItem = passNotifyItems.Single(); NotifySystem.Instance.Notify(passNotifyItem.Variety, NotifySystem.NotifyConfigure.NotSave, passNotifyItem.Text, false, "Notify Pass"); } + else + { + NotifySystem.Instance.NotifyPendingPassNotify(); + } break; case Event.Types.EventID.LevelUp: var twilightLevelUp = Utility.GetJSON(eventItemText);