diff --git a/Assets/Ino_nerdnavis.txt b/Assets/Ino_nerdnavis.txt index e3b4bb67c..d92774ff1 100644 --- a/Assets/Ino_nerdnavis.txt +++ b/Assets/Ino_nerdnavis.txt @@ -52,4 +52,3 @@ messageinfo 엄청 느린 버그 - 결과 화면 (승리 보상 지급) - 기본 공격 시 주변에 몹이 있다면 몹을 바라보게 - 펫 왜 공격 안하냐 - - 몬스터 젠 이펙트가 zero 위치에 나옴 diff --git a/Assets/Script/Character/Mob/MobActor.cs b/Assets/Script/Character/Mob/MobActor.cs index 17c0645db..190990248 100644 --- a/Assets/Script/Character/Mob/MobActor.cs +++ b/Assets/Script/Character/Mob/MobActor.cs @@ -47,7 +47,6 @@ public class MobActor : Actor if (SceneManager.GetActiveScene().name == "StatTest") return; #endif Set_Warp(Get_position()); - InGameInfo.Ins.Show_Effect("Effect_MonsterSpawn", Get_position()); } public void Set(eRole role, MonsterTableData mobtable, Vector3 pos, Action actDie, int order) { @@ -83,6 +82,7 @@ public class MobActor : Actor return; } #endif + InGameInfo.Ins.Show_Effect("Effect_MonsterSpawn", pos); //GameUI.Ins.IngameUI.m_ChapterQuest.Add_PurposeCount(new ChapterQuestAddData { purpose = ePurpose.MeetMob, mobid = m_MonsterTableData.n_MonsterID }); } public override void On_Regen()