Update of /cvsroot/wpdev/xmlscripts/scripts/magic
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27634/magic
Modified Files:
circle4.py
Log Message:
recall fix
Index: circle4.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/circle4.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** circle4.py 21 Oct 2004 17:59:07 -0000 1.17
--- circle4.py 26 Oct 2004 20:41:34 -0000 1.18
***************
*** 171,174 ****
--- 171,182 ----
return
+ # Move his pets if he has any
+ if char.char:
+ for follower in char.followers:
+ if follower.wandertype == 4 and follower.distanceto(char) < 5:
+ follower.removefromview()
+ follower.moveto(location)
+ follower.update(0)
+
char.soundeffect(0x1fc)
char.removefromview()
|