From e57f92415ff14f9cdedae245966da4ec61258fa2 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 27 Mar 2022 14:03:26 -0400 Subject: [PATCH] v1.2.1: fixed unintentionally committed debug code in succubus --- .../shatteredpixeldungeon/actors/mobs/Succubus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java index 505b08f1c..e5f965204 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java @@ -68,7 +68,7 @@ public class Succubus extends Mob { @Override public int damageRoll() { - return Random.NormalIntRange( 2, 3 ); + return Random.NormalIntRange( 25, 30 ); } @Override