diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-14 17:37:39 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-14 17:37:39 +0000 |
commit | 50f8f3a0579063ffaf1cb595fdc0201906f6507a (patch) | |
tree | 12b81b0e56e7ee52259d39cb194b005ce0803838 /npc | |
parent | 4b1b8c0771196351cb2c6ef4bd71676807c08633 (diff) | |
download | hercules-50f8f3a0579063ffaf1cb595fdc0201906f6507a.tar.gz hercules-50f8f3a0579063ffaf1cb595fdc0201906f6507a.tar.bz2 hercules-50f8f3a0579063ffaf1cb595fdc0201906f6507a.tar.xz hercules-50f8f3a0579063ffaf1cb595fdc0201906f6507a.zip |
Fixed Job Level requirement for Auto-Berserk
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7165 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/quests/skills/swordman_skills.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index ce8c1826d..b048fbded 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -37,6 +37,7 @@ Musashiden Date Added
======
06/14
+ * Fixed Job Level requirement for Auto-Berserk [Playtester]
* Fixed some experience gained bugs in two scripts. [MasterOfMuppets]
- Also fixed a major problem in the level 4 weapon quest, thanks to Qwadrat.
* Fixed an exploit in the comodo gambling script, thanks to reddozen [MasterOfMuppets]
diff --git a/npc/quests/skills/swordman_skills.txt b/npc/quests/skills/swordman_skills.txt index f91d41b33..cfb0f8f02 100644 --- a/npc/quests/skills/swordman_skills.txt +++ b/npc/quests/skills/swordman_skills.txt @@ -278,7 +278,7 @@ L_Other: close;
L_Start:
- if (baseClass == Job_Swordman && JobLevel<34) goto L_LowLvl;
+ if (baseClass == Job_Swordman && JobLevel<30) goto L_LowLvl;
if (BERSERK == 1) goto L_Check;
if (getskilllv(146)>0) goto L_GotSkill;
|