diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/magic.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/functions/magic.txt b/npc/functions/magic.txt index 31baa66c..4dadb2a9 100644 --- a/npc/functions/magic.txt +++ b/npc/functions/magic.txt @@ -117,7 +117,9 @@ L_Q_post_imp: if (@ignore & @QQ_ASTRALSOUL) goto L_Q_post_astralsoul; - if (!getskillv(SKILL_MAGIC) || !getskillv(SKILL_POOL)) + if (!(getskilllv(SKILL_MAGIC))) + goto L_Q_post_astralsoul; + if (!(getskilllv(SKILL_POOL))) goto L_Q_post_astralsoul; set @choice$[@choices_nr], "...ways to improve my magic?"; set @choice_idx[@choices_nr], @QQ_IMP; |