diff options
author | Reid <reidyaro@gmail.com> | 2016-09-22 09:21:56 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-09-22 09:21:56 +0200 |
commit | 33569c7f0954c9c3af355b52d9027afc78e612a5 (patch) | |
tree | d549ae9b3fd298d092694fa5ec0cc3db06cdb098 /world/map/npc/013-2 | |
parent | d342f42fdb8f656139530a4a46a7b7445b2bc1e6 (diff) | |
download | serverdata-33569c7f0954c9c3af355b52d9027afc78e612a5.tar.gz serverdata-33569c7f0954c9c3af355b52d9027afc78e612a5.tar.bz2 serverdata-33569c7f0954c9c3af355b52d9027afc78e612a5.tar.xz serverdata-33569c7f0954c9c3af355b52d9027afc78e612a5.zip |
Fix Astral Soul Skill accessibility for old player.
Diffstat (limited to 'world/map/npc/013-2')
-rw-r--r-- | world/map/npc/013-2/wizard.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/013-2/wizard.txt b/world/map/npc/013-2/wizard.txt index 32a2a623..edd7a768 100644 --- a/world/map/npc/013-2/wizard.txt +++ b/world/map/npc/013-2/wizard.txt @@ -61,7 +61,7 @@ L_NewStudent: next; // check if the player has the knowledge of any skill - if (getskilllv(SKILL_POOL) && (getskilllv(SKILL_MAGIC_ASTRAL) < 1)) + if (getskilllv(SKILL_POOL) && (getskilllv(SKILL_MAGIC_ASTRAL) < 1) || (getskilllv(SKILL_ASTRAL_SOUL) == 0)) menu "That would be very kind of you!", L_TeachSpell, "Actually I am looking for someone teaching me some more magic skills.", L_AstralSoul, |