home · contact · privacy
Fix buggy healthy_addch().
[plomrogue] / client / query_mapcell.py
index fba374d232f833cca18523e9035ecb6619f97aad..f446890cbb0ca2d22f9a168ca2dbf7e40c1b39be 100644 (file)
@@ -1,8 +1,15 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from client.config.world_data import world_data
 from client.io import send
 
+
 def query_mapcell():
     string = "THINGS_HERE " + str(world_data["map_center"][0]) + " " \
              + str(world_data["map_center"][1])
     send(string)
     world_data["look"] = ["(polling)"]
+    world_data["look_scroll"] = 0