diff options
Diffstat (limited to 'npc/003-13/arnea.txt')
-rw-r--r-- | npc/003-13/arnea.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-13/arnea.txt b/npc/003-13/arnea.txt index cdfc304b3..d667c0a5f 100644 --- a/npc/003-13/arnea.txt +++ b/npc/003-13/arnea.txt @@ -48,7 +48,7 @@ L_Manage: close; OnInit: - .@npcId = getnpcid(0, .name$); + .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, Darkelm); setunitdata(.@npcId, UDT_HEADMIDDLE, LegionCopperArmor); setunitdata(.@npcId, UDT_HEADBOTTOM, JeansChaps); @@ -61,7 +61,7 @@ OnInit: end; OnInstanceInit: - .@npcId = getnpcid(0, instance_npcname(.name$)); + .@npcId = getnpcid(instance_npcname(.name$)); setunitdata(.@npcId, UDT_HEADTOP, Darkelm); setunitdata(.@npcId, UDT_HEADMIDDLE, LegionCopperArmor); setunitdata(.@npcId, UDT_HEADBOTTOM, JeansChaps); |