v2.0.0: fixed chalice warning not account for new +5 dmg per prick

This commit is contained in:
Evan Debenham
2023-02-17 13:10:45 -05:00
parent 85678a03c4
commit 658fdbe0c7

View File

@@ -70,7 +70,7 @@ public class ChaliceOfBlood extends Artifact {
if (action.equals(AC_PRICK)){
int damage = 3*(level()*level());
int damage = 5 + 3*(level()*level());
if (damage > hero.HP*0.75) {