Update of /cvsroot/wpdev/xmlscripts/scripts/magic
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4247/magic
Modified Files:
__init__.py utilities.py
Log Message:
kindling fix
Index: __init__.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/__init__.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** __init__.py 16 Sep 2004 16:42:28 -0000 1.17
--- __init__.py 24 Sep 2004 11:07:04 -0000 1.18
***************
*** 58,69 ****
# Target Cancel
def target_cancel(char):
! if char.socket.hastag('cast_target'):
! char.socket.deltag('cast_target')
# Target Timeout
def target_timeout(char):
! char.socket.deltag('cast_target')
! char.socket.clilocmessage(500641)
! fizzle(char)
# Target Response
--- 58,70 ----
# Target Cancel
def target_cancel(char):
! char.socket.deltag('cast_target')
! char.dispel(char, 1, 'cast_delay')
! char.removescript('magic')
# Target Timeout
def target_timeout(char):
! if char.socket.hastag('cast_target'):
! char.socket.clilocmessage(500641)
! fizzle(char)
# Target Response
Index: utilities.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/utilities.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** utilities.py 14 Sep 2004 01:22:49 -0000 1.15
--- utilities.py 24 Sep 2004 11:07:04 -0000 1.16
***************
*** 51,55 ****
def fizzle(char):
char.dispel(char, 1, 'cast_delay')
-
char.removescript('magic')
--- 51,54 ----
|