diff options
Diffstat (limited to 'src/game-server/being.cpp')
-rw-r--r-- | src/game-server/being.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/being.cpp b/src/game-server/being.cpp index 59f37a88..45b6b8aa 100644 --- a/src/game-server/being.cpp +++ b/src/game-server/being.cpp @@ -79,7 +79,7 @@ int Being::damage(Damage damage) mHitpoints -= HPloss; mHitsTaken.push_back(HPloss); - LOG_INFO("Being " << getPublicID() << " got hit"); + LOG_DEBUG("Being " << getPublicID() << " got hit."); if (mHitpoints == 0) die(); @@ -88,7 +88,7 @@ int Being::damage(Damage damage) void Being::die() { - LOG_INFO("Being " << getPublicID() << " died"); + LOG_DEBUG("Being " << getPublicID() << " died."); setAction(DEAD); // dead beings stay where they are clearDestination(); |