summaryrefslogtreecommitdiff
path: root/src/localplayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/localplayer.h')
-rw-r--r--src/localplayer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/localplayer.h b/src/localplayer.h
index a3ed5f29..fa0b8984 100644
--- a/src/localplayer.h
+++ b/src/localplayer.h
@@ -373,8 +373,9 @@ class LocalPlayer : public Player
int mLastTarget; /** Time stamp of last targeting action, -1 if none. */
// Character status:
- std::map<int, int> mAttributeBase;
- std::map<int, int> mAttributeEffective;
+ typedef std::map<int, int> IntMap;
+ IntMap mAttributeBase;
+ IntMap mAttributeEffective;
std::map<int, std::pair<int, int> > mSkillExp;
int mCharacterPoints;
int mCorrectionPoints;