Cleanup of bot raid work and inclusion of bot_raid in cmake

This commit is contained in:
neckkola
2022-02-23 15:58:13 -04:00
parent ff3cd08189
commit d67fa473a2
12 changed files with 135 additions and 126 deletions
+4 -2
View File
@@ -2112,7 +2112,7 @@ Raid* EntityList::GetRaidByClient(Client* client)
return nullptr;
}
#ifdef BOTS
Raid* EntityList::GetRaidByBotName(const char* name)
{
@@ -2134,7 +2134,9 @@ Raid* EntityList::GetRaidByBotName(const char* name)
return nullptr;
}
#endif
#ifdef BOTS
Raid* EntityList::GetRaidByBot(Bot* bot)
{
@@ -2152,7 +2154,7 @@ Raid* EntityList::GetRaidByBot(Bot* bot)
}
return nullptr;
}
#endif
Raid *EntityList::GetRaidByMob(Mob *mob)