From 3b7356a4d3aabb2d00e02aa74e531037bfe3cac9 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 3 Apr 2025 12:25:45 -0400 Subject: [PATCH] v3.1.0: fixed ally swapping not counting as movement for shurikens --- .../com/shatteredpixel/shatteredpixeldungeon/actors/Char.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java index b3ea9e804..47281ec43 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java @@ -298,6 +298,7 @@ public abstract class Char extends Actor { if (Dungeon.hero.subClass == HeroSubClass.FREERUNNER){ Buff.affect(Dungeon.hero, Momentum.class).gainStack(); } + Dungeon.hero.justMoved = true; Dungeon.hero.busy(); }