diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java index d12e5ccc3..a8db5c1d8 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java @@ -74,9 +74,7 @@ public class ChaliceOfBlood extends Artifact { } private void prick(Hero hero){ - int damage = (level*2)*(level*2); - - + int damage = 3*(level*level); Earthroot.Armor armor = hero.buff(Earthroot.Armor.class); if (armor != null) {