diff options
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 6aedf790e..3edd7c70f 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -792,7 +792,9 @@ void Being::takeDamage(Being *restrict const attacker, updatePercentHP(); updateName(); } - else if (mType == ActorType::Player && socialWindow && getName() != "") + else if (mType == ActorType::Player && + socialWindow && + !getName().empty()) { socialWindow->updateAvatar(getName()); } |