aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/Player.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/backend/Player.cpp b/backend/Player.cpp
index f2bc526..5e0cca9 100644
--- a/backend/Player.cpp
+++ b/backend/Player.cpp
@@ -31,10 +31,6 @@ void Player::take_damage(unsigned int dmg) {
auto & hp = this->health_points;
lprtf("Je hebt %s%d levenspunt%s over.\n", hp > 0 ? "nog " : "", hp, hp == 1 ? "" : "en");
-
- if (this->is_dead()) {
- lprtf("Je bent dood gegaan!\n");
- }
}
Location & Player::get_location() const {