diff options
Diffstat (limited to 'npc/config/magic.txt')
-rw-r--r-- | npc/config/magic.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt index 675f36e42..9aa8016df 100644 --- a/npc/config/magic.txt +++ b/npc/config/magic.txt @@ -47,10 +47,10 @@ function script GetManaExp { .@bonus=0; } else { // Update skill memory - LAST_SKILL[4]=LAST_SKILL[3] - LAST_SKILL[3]=LAST_SKILL[2] - LAST_SKILL[2]=LAST_SKILL[1] - LAST_SKILL[1]=LAST_SKILL[0] + LAST_SKILL[4]=LAST_SKILL[3]; + LAST_SKILL[3]=LAST_SKILL[2]; + LAST_SKILL[2]=LAST_SKILL[1]; + LAST_SKILL[1]=LAST_SKILL[0]; LAST_SKILL[0]=.@sk; } |