diff --git a/Assets/Scripts/Skills/Effectors/PoisonSwampSpawner.cs b/Assets/Scripts/Skills/Effectors/PoisonSwampSpawner.cs index c23deb1..e7a285e 100644 --- a/Assets/Scripts/Skills/Effectors/PoisonSwampSpawner.cs +++ b/Assets/Scripts/Skills/Effectors/PoisonSwampSpawner.cs @@ -35,6 +35,8 @@ namespace EerieVillage.Skills.Effectors if (e == null) continue; var h = e.GetComponent(); if (h == null || !h.IsAlive) continue; + // PD 지시 2026-05-15 — IsFlying 강제 재 check (Awake race·controller late assign 케이스 보강) + e.RecheckFlyingFromAnimator(); // PD 지시 2026-05-15 — 공중 몬스터 (박쥐 등) skip · 독 늪 ground spawn 의도 if (e.IsFlying) continue; var p = e.transform.position;