home · contact · privacy
Server/py: Fix another T_MEMTHING handling error …
authorChristian Heller <c.heller@plomlompom.de>
Fri, 6 Mar 2015 20:51:56 +0000 (21:51 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 6 Mar 2015 20:51:56 +0000 (21:51 +0100)
plomrogue-server.py

index 9eee167dee3d9bb1faada199c53a2ec48f931082..59b1af3af34c5dcb0f45c14c6d2c6ec7ec4a6db4 100755 (executable)
@@ -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: