[wpdev-commits] xmlscripts/scripts/commands cast.py,1.3,1.4
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-07-15 01:17:26
|
Update of /cvsroot/wpdev/xmlscripts/scripts/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21926/commands Modified Files: cast.py Log Message: Fixes for recalling. Index: cast.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/cast.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cast.py 2 Jul 2004 13:40:45 -0000 1.3 --- cast.py 15 Jul 2004 01:17:11 -0000 1.4 *************** *** 14,24 **** try: args = int( args ); except: socket.sysmessage( "Usage: cast <spell-id>" ) - - castSpell( socket.player, args, 1 ) - return True def onLoad(): wolfpack.registercommand( "cast", CmdCast ) --- 14,23 ---- try: args = int( args ); + castSpell( socket.player, args, 1 ) except: socket.sysmessage( "Usage: cast <spell-id>" ) return True + def onLoad(): wolfpack.registercommand( "cast", CmdCast ) |