mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
[Bug Fix] Camping was causing player to leave raid, causing unexpected behavior (#3299)
This commit is contained in:
@@ -189,9 +189,10 @@ bool Client::Process() {
|
||||
}
|
||||
|
||||
if (camp_timer.Check()) {
|
||||
Raid* raid = entity_list.GetRaidByClient(this);
|
||||
if (raid)
|
||||
raid->RemoveMember(this->GetName());
|
||||
Raid *myraid = entity_list.GetRaidByClient(this);
|
||||
if (myraid) {
|
||||
myraid->MemberZoned(this);
|
||||
}
|
||||
LeaveGroup();
|
||||
Save();
|
||||
if (GetMerc())
|
||||
|
||||
Reference in New Issue
Block a user