Skip to content

Commit

Permalink
Add a check to make sure that Earthly Star isn't filtered out
Browse files Browse the repository at this point in the history
  • Loading branch information
SheepGoMeh committed Sep 19, 2020
1 parent 418abb3 commit 4d4a74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Visibility/VisibilityPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ private void OnUpdateEvent(Framework framework)
continue;
case BattleNpc battleNpc when battleNpc.OwnerId == _pluginInterface.ClientState.LocalPlayer?.ActorId:
continue;
case BattleNpc battleNpc when battleNpc.BattleNpcKind == BattleNpcSubKind.Pet:
case BattleNpc battleNpc when battleNpc.BattleNpcKind == BattleNpcSubKind.Pet && battleNpc.NameId != 6565:
pets.Add(battleNpc);
break;
case BattleNpc battleNpc when (byte)battleNpc.BattleNpcKind == 3:
Expand Down

0 comments on commit 4d4a74b

Please sign in to comment.