[wpdev-commits] xmlscripts/scripts/commands tele.py,1.1,1.2
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-07 23:43:14
|
Update of /cvsroot/wpdev/xmlscripts/scripts/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14177/commands Modified Files: tele.py Log Message: fixed smoke puffs appearing for invisible chars. Index: tele.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/tele.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tele.py 9 Jul 2004 09:00:09 -0000 1.1 --- tele.py 7 Sep 2004 23:43:02 -0000 1.2 *************** *** 5,8 **** --- 5,9 ---- import wolfpack + from wolfpack import utilities from wolfpack.consts import * *************** *** 29,34 **** if char.socket: char.socket.resendworld() ! wolfpack.effect(0x3728, source, 10, 15) ! wolfpack.effect(0x3728, target, 10, 15) ! char.soundeffect(0x1fe) return True --- 30,34 ---- if char.socket: char.socket.resendworld() ! utilities.smokepuff(char, source) ! utilities.smokepuff(char, target) return True |