diff options
Diffstat (limited to 'npc/config/magic.txt')
-rw-r--r-- | npc/config/magic.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt index f7b22d47c..7da849e86 100644 --- a/npc/config/magic.txt +++ b/npc/config/magic.txt @@ -19,7 +19,10 @@ function script GetManaExp { .@sk=getarg(0); .@pt=getarg(1); - .@bonus=rand(0,getskilllv(TMW2_SAGE)*3/2); + if (getskilllv(TMW2_SAGE)) + .@bonus=rand(0,getskilllv(TMW2_SAGE)*3/2); + else + .@bonus=0; if (LAST_SKILL == .@sk) end; LAST_SKILL=.@sk; |