diff options
Diffstat (limited to 'npc/other/monster_race.txt')
-rw-r--r-- | npc/other/monster_race.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/other/monster_race.txt b/npc/other/monster_race.txt index 24de8a1f8..eec6593e5 100644 --- a/npc/other/monster_race.txt +++ b/npc/other/monster_race.txt @@ -241,7 +241,7 @@ OnInit: OnEnable: emotion e_gasp; enablenpc strnpcinfo(0); - getmapxy(.@m$,.@x,.@y,1); + getmapxy(.@m$, .@x, .@y, UNITTYPE_NPC); setarray .@mob[1], R_PORING,R_LUNATIC,R_SAVAGE_BABE,R_DESERT_WOLF_B,R_DEVIRUCHI,R_BAPHOMET_; monster "p_track01",58,.@y,"The "+ F_Ord() +" Racer", .@mob[F_Num()],1,strnpcinfo(0)+"::OnMyMobDead"; end; @@ -1750,7 +1750,7 @@ p_track02,76,38,1 script Exit Guide#double 4_M_NFMAN,{ OnEnable: enablenpc strnpcinfo(0); setarray .@mob[1], R_PORING,R_LUNATIC,R_SAVAGE_BABE,R_DESERT_WOLF_B,R_DEVIRUCHI,R_BAPHOMET_; - getmapxy(.@m$,.@x,.@y,1); + getmapxy(.@m$, .@x, .@y, UNITTYPE_NPC); .@num = MN(); monster "p_track02",58,.@y,"Monster "+.@num,.@mob[.@num],1,strnpcinfo(0)+"::OnMyMobDead"; end; |