[Bug Fix] Fix for Raid Disband if leader not in same zone. (#3135)

This commit is contained in:
Aeadoin 2023-03-21 19:16:01 -04:00 committed by GitHub
parent fe2dcb6544
commit c5add503ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12185,7 +12185,7 @@ void Client::Handle_OP_RaidCommand(const EQApplicationPacket* app)
}
raid->SendGroupDisband(c_to_disband);
raid->GroupUpdate(group);
if (!raid->RaidCount() || !raid->GetLeader()) {
if (!raid->RaidCount()) {
raid->DisbandRaid();
}
break;