From 942c51e3467c9ca2f63116a38b5e8d6a7ab5fe45 Mon Sep 17 00:00:00 2001 From: Ino Date: Fri, 21 Feb 2025 13:51:21 +0900 Subject: [PATCH] ... --- Assets/Script/Character/Mob/MobActor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Script/Character/Mob/MobActor.cs b/Assets/Script/Character/Mob/MobActor.cs index b821a32be..69e8f6c72 100644 --- a/Assets/Script/Character/Mob/MobActor.cs +++ b/Assets/Script/Character/Mob/MobActor.cs @@ -644,12 +644,12 @@ public class MobActor : Actor yield return new WaitForSeconds(revivetime); - Play_Idle(); - DeadStatus = false; NoDmgTime = nodmgtime; InGameInfo.Ins.Show_Effect(skilltype.e_SkillEffect, this, skilltype.e_EffectLocation, nodmgtime); yield return new WaitForSeconds(0.5f); + Play_Idle(); + DeadStatus = false; ProjectileInfo.Ins.Shoot_Projectile("Projectile_Revive30", this, null, dmg, Get_Center_position(), 2f); }