diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-2/sage.txt | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index c64d9af4f..3aa371abc 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,7 @@ Date Added ====== +2007/10/01 + * Rev. 11342 Small bug fix (== -> !=) thanks to Saithis. [L0ne_W0lf] 2007/09/27 * Optimized/simplified some poorly written code in TSQ [ultramage] - fixed wrong quiz answers diff --git a/npc/jobs/2-2/sage.txt b/npc/jobs/2-2/sage.txt index 5209d3ec6..386ac45ee 100644 --- a/npc/jobs/2-2/sage.txt +++ b/npc/jobs/2-2/sage.txt @@ -5,7 +5,7 @@ //= Unknown Translator (1.0) //= Darkchild (1.2) //===== Current Version: ===================================== -//= 2.1 +//= 2.2 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -14,6 +14,7 @@ //===== Additional Comments: ================================= //= 2.1 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf] //= No longer uses function "F_BlockHigh" +//= 2.2 Small bug fix (== -> !=) thanks to Saithis. [L0ne_W0lf] //============================================================ yuno_in02,38,61,5 script Dean of the Academy#sa 743,{ @@ -1658,7 +1659,7 @@ yuno_in03,62,176,2 script History Professor#sa 109,{ yuno_in03,32,102,1 script Biology Professor#sa 755,{ mes "[Lucius Celsus]"; - if (BaseJob == Job_Mage) { + if (BaseJob != Job_Mage) { if (BaseJob == Job_Sage) { mes "What is your business with me?"; mes "You must make a reservation a week in advance if you have any questions."; |