Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
smasherprog committed Dec 30, 2024
1 parent a3e6411 commit 01e3725
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions EQTool/ViewModels/SpellWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,18 +194,9 @@ public void UpdateSpells(double dt_ms)
itemstoremove.Add(item);
}
var hidespell = false;
if (item.GroupName != CustomTimer.CustomerTime && item.GroupName != EQSpells.SpaceYou)
if (!item.GroupName.StartsWith(" "))
{
if (item.GroupName.StartsWith(" "))
{
continue;
}
var isnpc = MasterNPCList.NPCs.Contains(item.GroupName.Trim());
if (isnpc)
{
continue;
}
else if (item.SpellViewModelType == SpellViewModelType.Timer)
if (item.SpellViewModelType == SpellViewModelType.Timer)
{
if (settings.YouOnlySpells || RaidModeEnabled)
{
Expand Down

0 comments on commit 01e3725

Please sign in to comment.