diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-07 16:06:54 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-07 16:06:54 +0000 |
commit | 8ac27428ef854d15252c2061bb93ffda4bbb172c (patch) | |
tree | 890c5dd56c01367c4deb17e862fa8179a597db4a | |
parent | defde8e6bd619a929262c8f553c3cd4960cd743d (diff) | |
download | hercules-8ac27428ef854d15252c2061bb93ffda4bbb172c.tar.gz hercules-8ac27428ef854d15252c2061bb93ffda4bbb172c.tar.bz2 hercules-8ac27428ef854d15252c2061bb93ffda4bbb172c.tar.xz hercules-8ac27428ef854d15252c2061bb93ffda4bbb172c.zip |
* Follow-up r16592... thanks Trojal. :|
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16593 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/quests/cooking_quest.txt | 2 | ||||
-rw-r--r-- | npc/re/quests/eden/26-40.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/quests/cooking_quest.txt b/npc/quests/cooking_quest.txt index 2cd52adf1..df99f2c38 100644 --- a/npc/quests/cooking_quest.txt +++ b/npc/quests/cooking_quest.txt @@ -1169,7 +1169,7 @@ prt_castle,43,30,3 script Charles Orleans#cook 878,{ } cutin "orleans_2",0; mes "[Charles Orleans]"; - switch(.@old_book == 1) { + switch(.@old_book) { case 1: mes "Ah, so you're done"; mes "with the Level 1 Cookbook."; diff --git a/npc/re/quests/eden/26-40.txt b/npc/re/quests/eden/26-40.txt index 1db721025..e19a5d072 100644 --- a/npc/re/quests/eden/26-40.txt +++ b/npc/re/quests/eden/26-40.txt @@ -23,7 +23,7 @@ moc_para01,38,38,3 script Mission [26 - 40] 857,{ mes "- Many missions are -"; mes "- on the bulletin board. -"; next; - if ((BaseLevel < 26) && (BaseLevel > 40)) { + if ((BaseLevel < 26) || (BaseLevel > 40)) { mes "Your level is not qualified. You can not use the bulletin board."; close; } |