diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java index 29d0b5662..3b4e32912 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java @@ -95,7 +95,7 @@ public class Shaman extends Mob implements Callback { spend( TIME_TO_ZAP ); if (hit( this, enemy, true )) { - int dmg = Random.Int( 3, 8 ); + int dmg = (int)(damageRoll()*1.5f); if (Level.water[enemy.pos] && !enemy.flying) { dmg *= 1.5f; }