From 3d0423a545c9b5bed04159a3a2855a7de3853416 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 24 May 2023 12:29:29 -0400 Subject: [PATCH] v2.1.0: fixed thrown weapons not working with new combo strike system --- .../shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 68197df85..ae683a2ef 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 @@ -458,7 +458,7 @@ public class Hero extends Char { } if (hit && heroClass == HeroClass.DUELIST && wasEnemy){ - Buff.append( this, Sai.ComboStrikeTracker.class).addHit(); + Buff.affect( this, Sai.ComboStrikeTracker.class).addHit(); } return hit;