[wpdev-commits] xmlscripts/scripts environment.py,1.17,1.18
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-20 04:28:32
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24862 Modified Files: environment.py Log Message: Fixed crafting of stackable bowcrafting items. Index: environment.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/environment.py,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** environment.py 11 Sep 2004 16:12:10 -0000 1.17 --- environment.py 20 Sep 2004 04:28:23 -0000 1.18 *************** *** 199,203 **** # Dying Tub def dyingtub( char, item ): ! if not char.canreach( item, 2 ): char.socket.sysmessage( localemsg( 6 ) ) return 1 --- 199,203 ---- # Dying Tub def dyingtub( char, item ): ! if not char.canreach( item, 2 ) or item.getoutmostchar(): char.socket.sysmessage( localemsg( 6 ) ) return 1 |