diff options
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/being.cpp b/src/being.cpp index a74efe5f..5ee8276c 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -22,6 +22,8 @@ */ #include "being.h" +#include <sstream> + #include "game.h" #include "graphics.h" #include "log.h" @@ -31,8 +33,6 @@ #include "gui/gui.h" -#include "utils/tostring.h" - extern Spriteset *emotionset; PATH_NODE::PATH_NODE(Uint16 iX, Uint16 iY): @@ -120,7 +120,13 @@ Being::setSpeech(const std::string &text, Uint32 time) void Being::setDamage(Sint16 amount, Uint32 time) { - mDamage = amount ? toString(amount) : "miss"; + if (!amount) { + mDamage = "miss"; + } else { + std::stringstream damageString; + damageString << amount; + mDamage = damageString.str(); + } mDamageTime = tick_time; mShowDamage = true; } |