diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-03-16 14:28:45 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-03-16 14:28:45 +0200 |
commit | 59dc0bffc0f754de8daed29bce3a48e90ea6b4fb (patch) | |
tree | 7cd423679a60e25b29318d7a87f367729f8d5fdf /src/resources/beinginfo.cpp | |
parent | fbf665912933d10d9132b17802949149d9094fdd (diff) | |
download | plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.tar.gz plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.tar.bz2 plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.tar.xz plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.zip |
Add checks and fix some code style.
Diffstat (limited to 'src/resources/beinginfo.cpp')
-rw-r--r-- | src/resources/beinginfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/beinginfo.cpp b/src/resources/beinginfo.cpp index ff7428581..d0535ef04 100644 --- a/src/resources/beinginfo.cpp +++ b/src/resources/beinginfo.cpp @@ -92,8 +92,8 @@ const std::string &BeingInfo::getSound(SoundEvent event) const static std::string empty(""); SoundEvents::const_iterator i = mSounds.find(event); - return (i == mSounds.end()) ? empty : - i->second->at(rand() % i->second->size()); + return (i == mSounds.end() || !i->second) ? empty : + i->second->at(rand() % i->second->size()); } const Attack *BeingInfo::getAttack(int type) const |