diff options
-rw-r--r-- | npc/012-3_Cave/mana-seed.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/012-3_Cave/mana-seed.txt b/npc/012-3_Cave/mana-seed.txt index 7b8c7796..e1804e19 100644 --- a/npc/012-3_Cave/mana-seed.txt +++ b/npc/012-3_Cave/mana-seed.txt @@ -127,7 +127,7 @@ L_magic_level_1: mes "It is a light-headed feeling, and you find yourself forced to sit down for a few seconds to recover."; mes "Something is different. A new power has grown within you and is waiting to be understood."; mes "[1000 experience points]"; - skill SKILL_MAGIC, 1; + setskill SKILL_MAGIC, 1; getexp 1000, 0; next; @@ -230,7 +230,7 @@ L_magic_levelup: mes "[Mana Seed]"; mes "Something has changed... you feel more confident in your magical abilities."; - skill SKILL_MAGIC, 1 + getskilllv(SKILL_MAGIC); + setskill SKILL_MAGIC, 1 + getskilllv(SKILL_MAGIC); set @exp, @exp_bonus[getskilllv(SKILL_MAGIC)]; itemheal 0, 10000; getexp @exp, 0; |