[Database] Pull Spell Group Cache from Content DB (#3749)

This commit is contained in:
Fryguy 2023-12-08 15:41:09 -05:00 committed by GitHub
parent 841d7f2700
commit c24834de5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5811,7 +5811,7 @@ std::unordered_map<uint32, std::vector<uint16>> Client::LoadSpellGroupCache(uint
m_pp.class_, min_level, max_level
);
auto results = database.QueryDatabase(query);
auto results = content_db.QueryDatabase(query);
if (!results.Success() || !results.RowCount()) {
return spell_group_cache;
}