Skip to content

Commit

Permalink
fixing timers again
Browse files Browse the repository at this point in the history
  • Loading branch information
smasherprog committed Dec 30, 2024
1 parent b49d199 commit a3e6411
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions EQTool/ViewModels/SpellWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ public void UpdateSpells(double dt_ms)
var hidespell = false;
if (item.GroupName != CustomTimer.CustomerTime && item.GroupName != EQSpells.SpaceYou)
{
if (item.GroupName.StartsWith(" "))
{
continue;
}
var isnpc = MasterNPCList.NPCs.Contains(item.GroupName.Trim());
if (isnpc)
{
Expand Down

0 comments on commit a3e6411

Please sign in to comment.