diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-31 01:47:42 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-31 01:47:42 +0000 |
commit | 636a650ace24856d1ce381ec7b359d3fa291c4bf (patch) | |
tree | 66dca5c6c22001a88592097fb1baf04db929d5d6 /npc/quests | |
parent | c446dbe94054a6c5b5557d5930afc21b9d7887ab (diff) | |
download | hercules-636a650ace24856d1ce381ec7b359d3fa291c4bf.tar.gz hercules-636a650ace24856d1ce381ec7b359d3fa291c4bf.tar.bz2 hercules-636a650ace24856d1ce381ec7b359d3fa291c4bf.tar.xz hercules-636a650ace24856d1ce381ec7b359d3fa291c4bf.zip |
- Fixed a typo in Refined Bloody Roar rental box. (bugreport:3124)
- Fixed some spelling in the battle grounds script. (bugreport:3113)
- Fixed a variable check in a Novice Skill quest. (bugreport:1985)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13831 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/skills/novice_skills.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/quests/skills/novice_skills.txt b/npc/quests/skills/novice_skills.txt index 2b4b215c5..5b4ba9866 100644 --- a/npc/quests/skills/novice_skills.txt +++ b/npc/quests/skills/novice_skills.txt @@ -374,7 +374,7 @@ prt_castle,175,146,4 script Nursing Instructor#qsk_n 50,{ mes "I am very busy ! ! !"; mes "Would you just bug off ? ! ? !"; next; - if (NOV_SK >= 0 || NOV_SK <= 5) { + if (NOV_SK == 0 || NOV_SK == 1 || NOV_SK == 2 || NOV_SK == 4 || NOV_SK == 5) { switch(NOV_SK) { case 0: mes "[Dread Lord]"; |