summaryrefslogtreecommitdiff
path: root/src/player_class.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:13 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:13 +0200
commit10c45c9975c076476cf1bcb6a1260c1ee055a6a1 (patch)
tree54b3d9115f245eb5524e11ee34b685405575a797 /src/player_class.hpp
parent0a16384475488d682e33c8d55691e5d9417412ac (diff)
Change 'abilities' member of player_* to a std::vector<>
Diffstat (limited to 'src/player_class.hpp')
-rw-r--r--src/player_class.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player_class.hpp b/src/player_class.hpp
index e0f88008..57282e27 100644
--- a/src/player_class.hpp
+++ b/src/player_class.hpp
@@ -51,6 +51,6 @@ struct player_class
std::array<player_spec, MAX_SPEC> spec;
- std::array<player_race_ability_type, 10> abilities; /* Abilitiers to be gained by level(doesnt take prereqs in account) */
+ std::vector<player_race_ability_type> abilities; /* Abilities to be gained by level; ignores prereqs */
};