linux build fix

This commit is contained in:
nytmyr
2025-01-11 08:15:33 -06:00
parent e02839f4ec
commit bff1705ba2
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -952,7 +952,7 @@ public:
void SetBotTimers(std::vector<BotTimer_Struct> timers) { bot_timers = timers; }
std::vector<BotBlockedBuffs_Struct> GetBotBlockedBuffs() { return bot_blocked_buffs; }
void SetBotBlockedBuffs(std::vector<BotBlockedBuffs_Struct> blocked_buffs) { bot_blocked_buffs = blocked_buffs; }
const CommandedSpellTypesMinLevelMap& GetCommandedSpellTypesMinLevels() { return commanded_spells_min_level; }
const std::map<int32_t, std::map<int32_t, BotSpellTypesByClass_Struct>>& GetCommandedSpellTypesMinLevels() { return commanded_spells_min_level; }
uint32 GetLastZoneID() const { return _lastZoneId; }
int32 GetBaseAC() const { return _baseAC; }
int32 GetBaseATK() const { return _baseATK; }
@@ -1082,7 +1082,7 @@ protected:
std::vector<BotSpells_Struct> AIBot_spells_enforced;
std::unordered_map<uint16, std::vector<BotSpells_Struct_wIndex>> AIBot_spells_by_type;
CommandedSpellTypesMinLevelMap commanded_spells_min_level;
std::map<int32_t, std::map<int32_t, BotSpellTypesByClass_Struct>> commanded_spells_min_level;
std::vector<BotTimer_Struct> bot_timers;
std::vector<BotBlockedBuffs_Struct> bot_blocked_buffs;
-2
View File
@@ -127,6 +127,4 @@ struct BotSpellTypesByClass_Struct {
std::string description;
};
using CommandedSpellTypesMinLevelMap = std::map<int32_t, std::map<int32_t, BotSpellTypesByClass_Struct>>;
#endif // BOT_STRUCTS