[wpdev-commits] xmlscripts/scripts/combat __init__.py,1.13,1.14
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-08-29 16:36:47
|
Update of /cvsroot/wpdev/xmlscripts/scripts/combat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23453/combat Modified Files: __init__.py Log Message: fix for unequippable items. Index: __init__.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/combat/__init__.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** __init__.py 16 Jul 2004 07:09:26 -0000 1.13 --- __init__.py 29 Aug 2004 16:36:38 -0000 1.14 *************** *** 66,70 **** raise ! attacker.nextswing = time + properties.getdelay(attacker, weapon) # --- 66,71 ---- raise ! delay = properties.getdelay(attacker, weapon) ! attacker.nextswing = time + delay # |