From: Christian Heller Date: Fri, 6 Mar 2015 20:51:56 +0000 (+0100) Subject: Server/py: Fix another T_MEMTHING handling error … X-Git-Tag: tce~398 X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=a673f7a786188a0f2d7f0ecd588508b9ceaf44ed Server/py: Fix another T_MEMTHING handling error … --- 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: