mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-22 05:32:26 +00:00
Fix crash issue in zone/hate_list.cpp
This commit is contained in:
parent
15f217b594
commit
8dd00f5288
@ -1,5 +1,8 @@
|
|||||||
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
== 09/02/2014 ==
|
||||||
|
demonstar55: crash fix checking DivineAura in hate_list.cpp
|
||||||
|
|
||||||
== 08/31/2014 ==
|
== 08/31/2014 ==
|
||||||
KLS: Fixed a bug in fishing in S3D zones
|
KLS: Fixed a bug in fishing in S3D zones
|
||||||
KLS: Fixed a bug in turnins with new any abstraction
|
KLS: Fixed a bug in turnins with new any abstraction
|
||||||
|
|||||||
@ -163,7 +163,7 @@ Mob* HateList::GetClosest(Mob *hater) {
|
|||||||
++iterator;
|
++iterator;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (close == 0 && hater->IsNPC() || close->DivineAura())
|
if ((!close && hater->IsNPC()) || (close && close->DivineAura()))
|
||||||
close = hater->CastToNPC()->GetHateTop();
|
close = hater->CastToNPC()->GetHateTop();
|
||||||
|
|
||||||
return close;
|
return close;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user