diff --git a/main.cpp b/main.cpp index 2021038..28781f6 100644 --- a/main.cpp +++ b/main.cpp @@ -76,7 +76,7 @@ class Entity //Danneggia di x l'entità void damage(int x) { - if(hp - x < 0) + if(hp - x <= 0) { kill(); }