[wpdev-commits] xmlscripts/scripts/commands export.py,1.14,1.15
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-13 15:44:54
|
Update of /cvsroot/wpdev/xmlscripts/scripts/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13339/commands Modified Files: export.py Log Message: reverted changes to the text format Index: export.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/export.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** export.py 29 Aug 2004 17:07:30 -0000 1.14 --- export.py 13 Sep 2004 15:44:43 -0000 1.15 *************** *** 195,201 **** else: # Text ! output.write( "%s 0x%x %i %i %i %i 0x%x%s" % ( item.baseid, item.id, item.pos.x, item.pos.y, item.pos.z, item.pos.map, item.color, newline ) ) # Older Format, no baseid/map saved ! #output.write( "0x%x %i %i %i 0x%x%s" % ( item.id, item.pos.x, item.pos.y, item.pos.z, item.color, newline ) ) if item.amount > 1: --- 195,203 ---- else: # Text ! # Who the hell changed this? ! # This format is for static exchange, no need for baseids or maps damnit! ! # output.write( "%s 0x%x %i %i %i %i 0x%x%s" % ( item.baseid, item.id, item.pos.x, item.pos.y, item.pos.z, item.pos.map, item.color, newline ) ) # Older Format, no baseid/map saved ! output.write( "0x%x %i %i %i 0x%x%s" % ( item.id, item.pos.x, item.pos.y, item.pos.z, item.color, newline ) ) if item.amount > 1: |