diff options
author | Fate <fate-tmw@googlemail.com> | 2009-06-16 16:05:23 +0000 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-06-16 16:05:23 +0000 |
commit | 9bc643d4f9923ad4e6ee9c38f8dc6f734bbc82b2 (patch) | |
tree | da5eda01734b073ede86dc5c760e92cc6cdd8f44 | |
parent | 35c4d8c666fb14dd96f9440c8ffa15ff4fef8b15 (diff) | |
download | serverdata-9bc643d4f9923ad4e6ee9c38f8dc6f734bbc82b2.tar.gz serverdata-9bc643d4f9923ad4e6ee9c38f8dc6f734bbc82b2.tar.bz2 serverdata-9bc643d4f9923ad4e6ee9c38f8dc6f734bbc82b2.tar.xz serverdata-9bc643d4f9923ad4e6ee9c38f8dc6f734bbc82b2.zip |
Added missing semicolon in Sagatha script
-rw-r--r-- | conf/magic.conf.template | 1 | ||||
-rw-r--r-- | npc/013-1_Woodland_hills/sagatha.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/conf/magic.conf.template b/conf/magic.conf.template index 0dbbaba4..40105567 100644 --- a/conf/magic.conf.template +++ b/conf/magic.conf.template @@ -551,6 +551,7 @@ SPELL lay-on-hands (target : STRING) : "#L10" = && not (running_status_update(pc(target), SC_HALT_REGENERATE)) )) => EFFECT CALL adjust_spellpower(school); + IF (not (target)) THEN ABORT; IF (pc (target) == caster) THEN ABORT; IF failed(pc(target)) THEN (IF ((target = "mouboo" || target = "Mouboo") diff --git a/npc/013-1_Woodland_hills/sagatha.txt b/npc/013-1_Woodland_hills/sagatha.txt index 283b40d1..ffa42aa8 100644 --- a/npc/013-1_Woodland_hills/sagatha.txt +++ b/npc/013-1_Woodland_hills/sagatha.txt @@ -45,7 +45,7 @@ function script SagathaHatAttack { mes "[Witch]"; mes "\"You have no idea what that poor creature felt!\""; - mes "She snaps her fingers." + mes "She snaps her fingers."; mes "\"Let me show you...\""; misceffect 4, strcharinfo(0); misceffect 4; |