diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-14 21:35:01 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-14 21:35:01 +0000 |
commit | d4d21ef1af981a5292f99e6b459237cbcc1fac25 (patch) | |
tree | 8fabc8d18edd67426c8a81ea0cb20b68dabc3f5d /conf | |
parent | 9aa00352be627250eafbe7be10f1699ea245de4e (diff) | |
download | serverdata-d4d21ef1af981a5292f99e6b459237cbcc1fac25.tar.gz serverdata-d4d21ef1af981a5292f99e6b459237cbcc1fac25.tar.bz2 serverdata-d4d21ef1af981a5292f99e6b459237cbcc1fac25.tar.xz serverdata-d4d21ef1af981a5292f99e6b459237cbcc1fac25.zip |
Fix #A13 to not send to message when cast on self
Diffstat (limited to 'conf')
-rw-r--r-- | conf/magic.conf.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/magic.conf.template b/conf/magic.conf.template index 9848d3d4..9dee5543 100644 --- a/conf/magic.conf.template +++ b/conf/magic.conf.template @@ -836,7 +836,7 @@ SPELL hide (target : PC) : "#A13" = status_change(target, SC_HIDE, 0, 0, 0, 0, 5000 + (spellpower * 2500)); CALL gain_xp(2); message(target, "You are hidden!"); - message(caster, "You hid someone!"); + IF (caster <> target) THEN message(caster, "You hid someone!"); ATEND message(target, "It's over!"); #-------------------------------------------------------------------------------- |