home · contact · privacy
838fb7edcb131b33f2529d37d590b319ff7fbf90
[plomrogue] / client / query_mapcell.py
1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
4
5
6 from client.config.world_data import world_data
7 from client.io import send
8
9
10 def query_mapcell():
11     string = "THINGS_HERE " + str(world_data["map_center"][0]) + " " \
12              + str(world_data["map_center"][1])
13     send(string)
14     world_data["look"] = ["(polling)"]