Moved effects to a vector since we dont need the random access by slot

This commit is contained in:
KimLS
2015-06-09 22:46:53 -07:00
parent 963eb91669
commit 8422ce6f25
3 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ public:
uint32 account_time_required;
int total_cost;
Ability *base_ability;
std::unordered_map<int, RankEffect> effects;
std::vector<RankEffect> effects;
std::vector<RankPrereq> prereqs;
};