From 338660a853d92c68c598d9771a2288f813e6a9b0 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 9 Oct 2025 12:51:39 -0400 Subject: [PATCH] v3.3.0: Tengu now has a 1-turn delay before attacking when he spawns --- .../shatteredpixeldungeon/levels/PrisonBossLevel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java index 911125418..311d2a06d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java @@ -448,7 +448,7 @@ public class PrisonBossLevel extends Level { tengu.state = tengu.HUNTING; tengu.pos = tenguPos; - GameScene.add( tengu ); + GameScene.add( tengu, 1 ); tengu.notice(); CellEmitter.get( tengu.pos ).burst( Speck.factory( Speck.WOOL ), 6 ); @@ -474,6 +474,7 @@ public class PrisonBossLevel extends Level { Doom d = tengu.buff(Doom.class); Actor.remove(tengu); mobs.remove(tengu); + tengu.clearTime(); TargetHealthIndicator.instance.target(null); tengu.sprite.kill(); if (d != null) tengu.add(d); @@ -495,8 +496,7 @@ public class PrisonBossLevel extends Level { tengu.state = tengu.HUNTING; tengu.pos = (arena.left + arena.width()/2) + width()*(arena.top+2); - GameScene.add(tengu); - tengu.timeToNow(); + GameScene.add( tengu, 1 ); tengu.notice(); CellEmitter.get( tengu.pos ).burst( Speck.factory( Speck.WOOL ), 6 );