diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-29 08:19:09 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-29 08:19:09 +0000 |
commit | d74b0a6dc8107497c5a52d5791bae87b8b1e2451 (patch) | |
tree | e4deb5cbffad10e1b1dd110500e3a888fe587fbd | |
parent | c5394ee2a6de499e6792a153618895a7ba348c25 (diff) | |
download | hercules-d74b0a6dc8107497c5a52d5791bae87b8b1e2451.tar.gz hercules-d74b0a6dc8107497c5a52d5791bae87b8b1e2451.tar.bz2 hercules-d74b0a6dc8107497c5a52d5791bae87b8b1e2451.tar.xz hercules-d74b0a6dc8107497c5a52d5791bae87b8b1e2451.zip |
Updated ASSIN_Q2 variable range check from < 1 to < 3 to defend against the variable being stuck at an incorrect value of 1 or 2, caused by logging out or pressing cancel on choices list at an inappropriate time thus rendering the player unable to complete the Assassin Quest. Thanks to Chibi for Report.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13707 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 4 | ||||
-rw-r--r-- | npc/jobs/2-1/assassin.txt | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index f2ab0711e..e73c102c8 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,9 @@ Date Added ====== +2009-04/29 + *Updated ASSIN_Q2 variable range check from < 1 to < 3 to defend against the variable being stuck at an incorrect value of 1 or 2, + caused by logging out or pressing cancel on choices list at an inappropriate time thus rendering the player unable to complete the Assassin Quest. + Thanks to Chibi for Report. [Paradox924X] 2009/04/28 * Removed unnecessary text and fixed a goto in the Hunter Jobquest (bugreport:3014) [Playtester] * A few quest updates due to bugreports [Playtester] diff --git a/npc/jobs/2-1/assassin.txt b/npc/jobs/2-1/assassin.txt index cc6052ff1..c0a793105 100644 --- a/npc/jobs/2-1/assassin.txt +++ b/npc/jobs/2-1/assassin.txt @@ -646,7 +646,7 @@ OnTouch: in_moc_16,19,154,0 script nameless_one -1,8,2,{ OnTouch: - if (ASSIN_Q2 < 1) { + if (ASSIN_Q2 < 3) { mes "[The Anonymous One]"; mes "Welcome, guest."; mes "Mwahaha, it's useless"; |