diff options
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/jobs/1-1/swordman.txt | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 5257182ec..fd581628c 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -39,6 +39,8 @@ Playtester Date Added
======
07/07
+ * Fixed a small bug in the swordsman job quest [MasterOfMuppets]
+ - thanks to Belle for notifying me about it.
* Small fix in the Blacksmith Quest [Playtester]
07/05
* Fixed Dancer Job Quest (3rd part) thx2Alis [Lupus]
diff --git a/npc/jobs/1-1/swordman.txt b/npc/jobs/1-1/swordman.txt index 0ec8f108b..530c23a3e 100644 --- a/npc/jobs/1-1/swordman.txt +++ b/npc/jobs/1-1/swordman.txt @@ -175,13 +175,13 @@ L_Done: // -- Warp to test room --
izlude_in.gat,62,170,0 script w1039 45,1,1,{
if(BaseJob == Job_Novice && job_sword_q > 0) warp "izlude_in.gat",40,170;
- if(job_sword_q == 0) doevent "Swordsman::OnStart";
+ if(job_sword_q == 0) doevent "Swordsman#02::OnStart";
end;
}
// -- Swordsman --
izlude_in.gat,65,171,5 script Swordsman#01 85,{
- doevent "Swordsman::OnStart";
+ doevent "Swordsman#02::OnStart";
end;
}
|