diff options
author | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-07 15:49:12 +0000 |
---|---|---|
committer | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-07 15:49:12 +0000 |
commit | baf077ae54692df48db538e3887f1cfd1afafc4e (patch) | |
tree | 4a2cdfad43d587930239b9071c9aee47dd1a4c6f | |
parent | 0ce813749e1a8d9e72043e0e35660544cc0eb72e (diff) | |
download | hercules-baf077ae54692df48db538e3887f1cfd1afafc4e.tar.gz hercules-baf077ae54692df48db538e3887f1cfd1afafc4e.tar.bz2 hercules-baf077ae54692df48db538e3887f1cfd1afafc4e.tar.xz hercules-baf077ae54692df48db538e3887f1cfd1afafc4e.zip |
Fixed a small bug in the swordsman job quest, thanks to Belle for notifying me about it.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7564 54d463be-8e91-2dee-dedb-b68131a5f0ec
-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;
}
|