diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Venom.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Venom.java index 93f0d07ee..7c58c6c88 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Venom.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Venom.java @@ -55,7 +55,7 @@ public class Venom extends Poison implements Hero.Doom { public boolean act() { if (target.isAlive()) { target.damage(damage, this); - damage = Math.min(damage+1+Dungeon.depth/10, Dungeon.depth+1); + damage = Math.min(damage+1+Dungeon.depth/10, ((Dungeon.depth+1)/2)+1); //want it to act after the cloud of venom it came from. spend( TICK+0.1f );