diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-26 07:29:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-26 07:29:53 -0300 |
commit | 791fe50c6bac7a45dbabc7944b0f096229577cbb (patch) | |
tree | 3f33eee3c4c65b6e7e6eccd1c3a308da087162a2 | |
parent | 8f950426126e7a0abbf4f64949c9ab3a0a8c0d0e (diff) | |
download | serverdata-791fe50c6bac7a45dbabc7944b0f096229577cbb.tar.gz serverdata-791fe50c6bac7a45dbabc7944b0f096229577cbb.tar.bz2 serverdata-791fe50c6bac7a45dbabc7944b0f096229577cbb.tar.xz serverdata-791fe50c6bac7a45dbabc7944b0f096229577cbb.zip |
Fix typo
-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; } |