[Bug Fix] Fix issue with IsEntOnHateList (#4097)

# Notes
- We were not validating pointer in `IsEntOnHateList()`.
This commit is contained in:
Alex King
2024-02-19 02:52:19 -05:00
committed by GitHub
parent 767846f7e5
commit 6ec63969bb
2 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ public:
Mob *GetMobWithMostHateOnList(bool skip_mezzed = false);
Mob *GetEscapingMobOnHateList(Mob *center, float range = 0.0f, bool first = false);
bool IsEntOnHateList(Mob *mob);
bool IsEntOnHateList(Mob* m);
bool IsHateListEmpty();
bool RemoveEntFromHateList(Mob *ent);