diff --git a/core/src/com/dungeoncrawler/model/Entity.java b/core/src/com/dungeoncrawler/model/Entity.java index aee2523..54c1d1a 100644 --- a/core/src/com/dungeoncrawler/model/Entity.java +++ b/core/src/com/dungeoncrawler/model/Entity.java @@ -32,7 +32,7 @@ public abstract class Entity { } public boolean attack(Entity e){ - if(e.getHp() - this.dmg <= 0){ + if(e.getHp() - this.dmg <= 1){ e.setHp(1); return true; }