From a673f7a786188a0f2d7f0ecd588508b9ceaf44ed Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Fri, 6 Mar 2015 21:51:56 +0100 Subject: [PATCH] =?utf8?q?Server/py:=20Fix=20another=20T=5FMEMTHING=20hand?= =?utf8?q?ling=20error=20=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- plomrogue-server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plomrogue-server.py b/plomrogue-server.py index 9eee167..59b1af3 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -842,7 +842,7 @@ def command_thingshere(str_y, str_x): for id in world_db["Things"]: write_thing_if_here() else: - for id in world_db["Things"][id]["T_MEMTHING"]: + for id in world_db["Things"][0]["T_MEMTHING"]: write_thing_if_here() strong_write(io_db["file_out"], "THINGS_HERE END\n") else: -- 2.30.2