From 658fdbe0c794873f556d2ccf3ec44a4057554df5 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 17 Feb 2023 13:10:45 -0500 Subject: [PATCH] v2.0.0: fixed chalice warning not account for new +5 dmg per prick --- .../shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java index f6a40f558..76c6df5be 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java @@ -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) {