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
|