home · contact · privacy
Client: Restructure into modules below client/.
[plomrogue] / client / query_mapcell.py
1 from client.config.world_data import world_data
2 from client.io import send
3
4 def query_mapcell():
5     string = "THINGS_HERE " + str(world_data["map_center"][0]) + " " \
6              + str(world_data["map_center"][1])
7     send(string)
8     world_data["look"] = ["(polling)"]