Skip to content

Commit

Permalink
Remove Rank 1 from IsBoss
Browse files Browse the repository at this point in the history
This value seems to be for open world mobs of a particular nature
  • Loading branch information
MidoriKami committed Aug 17, 2024
1 parent 71a7cdc commit 5ef0547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mappy/MapRenderer/MapRenderer.GameObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ private unsafe bool IsAetherCurrent(IGameObject gameObject) {
}

private bool IsBoss(IGameObject chara)
=> Service.DataManager.GetExcelSheet<BNpcBase>()!.GetRow(chara.DataId)?.Rank is 1 or 2 or 6;
=> Service.DataManager.GetExcelSheet<BNpcBase>()!.GetRow(chara.DataId)?.Rank is 2 or 6;
}

0 comments on commit 5ef0547

Please sign in to comment.