From 45304242ce5b7b02193a929d6e258f6ccd58fa3c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 13 Aug 2025 15:19:03 -0400 Subject: [PATCH] v3.2.1: fixed liquid agil EVA persisting slightly longer than intended --- .../shatteredpixeldungeon/actors/hero/Talent.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java index 1b097fcfe..0877094a4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java @@ -295,7 +295,12 @@ public enum Talent { public void tintIcon(Image icon) { icon.hardlight(0.35f, 0f, 0.7f); } public float iconFadePercent() { return Math.max(0, visualcooldown() / 50); } }; - public static class LiquidAgilEVATracker extends FlavourBuff{}; + public static class LiquidAgilEVATracker extends FlavourBuff{ + { + //detaches after hero acts, not after mobs act + actPriority = HERO_PRIO+1; + } + }; public static class LiquidAgilACCTracker extends FlavourBuff{ public int uses;