summaryrefslogtreecommitdiff
path: root/src/localplayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r--src/localplayer.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp
index ff3267ad..cb7515dc 100644
--- a/src/localplayer.cpp
+++ b/src/localplayer.cpp
@@ -749,7 +749,9 @@ void LocalPlayer::raiseAttribute(size_t attr)
{
// we assume that the server allows the change. When not we will undo it later.
mCharacterPoints--;
- mAttributeBase.at(attr)++;
+ IntMap::iterator it = mAttributeBase.find(attr);
+ if (it != mAttributeBase.end())
+ (*it).second++;
Net::getPlayerHandler()->increaseAttribute(attr);
}
@@ -758,7 +760,9 @@ void LocalPlayer::lowerAttribute(size_t attr)
// we assume that the server allows the change. When not we will undo it later.
mCorrectionPoints--;
mCharacterPoints++;
- mAttributeBase.at(attr)--;
+ IntMap::iterator it = mAttributeBase.find(attr);
+ if (it != mAttributeBase.end())
+ (*it).second--;
Net::getPlayerHandler()->decreaseAttribute(attr);
}