diff options
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/quests/skills/archer_skills.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index c143010e0..52c7792d2 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -36,6 +36,8 @@ Musashiden Date Added
======
+06/13
+ * Fixed the Job Level requirement for Arrow Crafting [Playtester]
06/12
* Implemented the comodo gambling NPCs. Thanks to reddozen and Zefris. [MasterOfMuppets]
* Looks like somebody needs sleep. (Typos in Yuno.txt) [Lance]
diff --git a/npc/quests/skills/archer_skills.txt b/npc/quests/skills/archer_skills.txt index c59aab995..0f91d1b64 100644 --- a/npc/quests/skills/archer_skills.txt +++ b/npc/quests/skills/archer_skills.txt @@ -34,7 +34,7 @@ L_Other: emotion e_what;
close;
L_Start:
- if (BaseJob==Job_Archer && JobLevel<35) goto L_LowLvl;
+ if (BaseJob==Job_Archer && JobLevel<30) goto L_LowLvl;
if (getskilllv(147)>0) goto L_GotSkill;
if (ARWCRFT == 1) goto L_GetSkill;
mes "Hmmm?.... Oh you seem to be a high level Archer type. Why don't we";
|