Update of /cvsroot/wpdev/xmlscripts/scripts/commands
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10700/commands
Modified Files:
export.py
Log Message:
Error prevention for farm eating animals.
Prevent exporting of spawnregion objects.
Index: export.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/export.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** export.py 20 Jun 2004 18:51:42 -0000 1.4
--- export.py 12 Jul 2004 01:51:53 -0000 1.5
***************
*** 138,142 ****
i = 0
while item:
! if not item.baseid in nonsaves:
# Build our string
if format == 1: # Sphere 51a
--- 138,142 ----
i = 0
while item:
! if not item.baseid in nonsaves and ( item.spawnregion == None or item.spawnregion == '' ):
# Build our string
if format == 1: # Sphere 51a
|