Skip to content

Commit

Permalink
[Bug Fix] Fix for Raid Disband if leader not in same zone. (#3135)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeadoin committed Mar 21, 2023
1 parent fe2dcb6 commit c5add50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zone/client_packet.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit c5add50

Please sign in to comment.