home · contact · privacy
Server/py: To world_db, add empty dicts for things, actions, types.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 25 Feb 2015 06:31:37 +0000 (07:31 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 25 Feb 2015 06:31:37 +0000 (07:31 +0100)
plomrogue-server.py

index 815e5d7f6680e89ee50aec66a994d1400e442733..276903fa471d3d5c9444c61b8eb4cf32d148476b 100755 (executable)
@@ -352,7 +352,10 @@ world_db = {
     "SEED_RANDOMNESS": 0,
     "PLAYER_TYPE": 0,
     "MAP_LENGTH": 64,
-    "WORLD_ACTIVE": 0
+    "WORLD_ACTIVE": 0,
+    "thing actions": {},
+    "thing types": {},
+    "things": {}
 }