[Bug Fix] Fix edge cases where camped bots would be left in a raid (#3139)

* [Bug Fix] Fix edge cases where camped bots would be left in a raid

* formatting
This commit is contained in:
Aeadoin
2023-03-23 19:23:34 -04:00
committed by GitHub
parent c975dc2412
commit abc27ab423
4 changed files with 32 additions and 4 deletions
+1 -2
View File
@@ -1703,11 +1703,10 @@ void Raid::VerifyRaid()
//attribute before calling a client function or casting to client.
b = entity_list.GetBotByBotName(m.member_name);
m.member = b->CastToClient();
m.is_bot = true; //Used to identify those members who are Bots
m.is_bot = true;
}
else {
m.member = nullptr;
m.is_bot = false;
}
}