diff options
Diffstat (limited to 'npc/016-1')
-rw-r--r-- | npc/016-1/laranja.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/016-1/laranja.txt b/npc/016-1/laranja.txt index 66d692e43..32c1770e7 100644 --- a/npc/016-1/laranja.txt +++ b/npc/016-1/laranja.txt @@ -38,7 +38,7 @@ L_Close: close; OnInit: - .@npcId = getnpcid(0, .name$); + .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); setunitdata(.@npcId, UDT_HEADMIDDLE, ShortTankTop); setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); @@ -54,7 +54,7 @@ OnInit: end; OnInstanceInit: - .@npcId = getnpcid(0, instance_npcname(.name$)); + .@npcId = getnpcid(instance_npcname(.name$)); setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); setunitdata(.@npcId, UDT_HEADMIDDLE, ShortTankTop); setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); |