mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 10:31:29 +00:00
[Bug Fix] Camping was causing player to leave raid, causing unexpected behavior (#3299)
This commit is contained in:
parent
8e51bf8b19
commit
ed09281f66
@ -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())
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user