diff options
Diffstat (limited to 'src/being/playerinfo.cpp')
-rw-r--r-- | src/being/playerinfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp index 15c2eb939..32a39e0c7 100644 --- a/src/being/playerinfo.cpp +++ b/src/being/playerinfo.cpp @@ -173,7 +173,8 @@ int getStatEffective(const AttributesT id) const std::pair<int, int> getStatExperience(const AttributesT id) { const StatMap::const_iterator it = mData.mStats.find(id); - int a, b; + int a; + int b; if (it != mData.mStats.end()) { a = it->second.exp; |