From f04482143d0118d260683e0cc9d8f624b28cf881 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 17 Jan 2025 17:06:41 -0500 Subject: [PATCH] v3.0.0: fixed shared upgrade applying bonus dmg incorrectly --- .../shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java index 94929f487..8ef6e4805 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java @@ -1480,8 +1480,6 @@ public class Hero extends Char { } else { Buff.prolong(Hero.this, SnipersMark.class, SnipersMark.DURATION).set(enemy.id(), 0); } - int bonusTurns = hasTalent(Talent.SHARED_UPGRADES) ? wep.buffedLvl() : 0; - Buff.prolong(Hero.this, SnipersMark.class, SnipersMark.DURATION + bonusTurns).set(enemy.id(), bonusTurns); } Actor.remove(this); return true;