diff demos/rpg/scripts/scene.py @ 547:e59ece21ab3e

Item serialization will now assume some default values if they are not found in the save files. The 'spawn' console command can now spawn items with default values. Cleaned up some print statements.
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Fri, 04 Jun 2010 21:01:34 +0000
parents 8fee2d2286e9
children d0282579668c
line wrap: on
line diff
--- a/demos/rpg/scripts/scene.py	Thu Jun 03 21:35:06 2010 +0000
+++ b/demos/rpg/scripts/scene.py	Fri Jun 04 21:01:34 2010 +0000
@@ -61,16 +61,12 @@
 		if objectid:
 			identifier = objectid
 		else:
-			#identifier = uuid.uuid1()
-			identifier = "blkdjfkdj"
-	
+			identifier = str(uuid.uuid1())
+			
 		try:
 			objdict = self._modelsettings.get("objects", objectname, {})
 			modeldict = self._modelsettings.get("models", objdict["modelname"], {})
 			
-			print objdict
-			print modeldict
-			
 			loadImportFile(modeldict["file"], self._gamecontroller.engine)
 			
 			if objdict["type"] == "GOLD":