diff --git a/src/game/game.cpp b/src/game/game.cpp index a47b9e8f2d6..76b4062b6cc 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -7306,7 +7306,7 @@ bool Game::combatChangeHealth(const std::shared_ptr &attacker, const s ss << ucfirst(attacker->getNameDescription()) << " healed "; if (attacker == target) { ss << (targetPlayer ? targetPlayer->getReflexivePronoun() : "itself"); - } else { + } else if (target) { ss << target->getNameDescription(); } }