From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 2 Mar 2015 22:49:15 +0000 (+0100)
Subject: Server/py: Extend command_makeworld().
X-Git-Tag: tce~440
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/static/template?a=commitdiff_plain;h=6e20478e0ef6d626632e0cd0203f4588198f9dff;p=plomrogue

Server/py: Extend command_makeworld().
---

diff --git a/plomrogue-server.py b/plomrogue-server.py
index 5b30855..3d4d0bd 100755
--- a/plomrogue-server.py
+++ b/plomrogue-server.py
@@ -384,7 +384,8 @@ def command_makeworld(seed_string):
     world_db["Things"] = {}
     remake_map()
     world_db["WORLD_ACTIVE"] = 1
-    # TODO: Generate things (player first, with updated memory), set TURN 1,
+    world_db["TURN"] = 1
+    # TODO: Generate things (player first, with updated memory)
     atomic_write(io_db["path_out"], "NEW_WORLD\n", do_append=True)