X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=client%2Fquery_mapcell.py;fp=client%2Fquery_mapcell.py;h=fba374d232f833cca18523e9035ecb6619f97aad;hb=3d4ef72a869787ade399af85a42ab0aef9d73766;hp=0000000000000000000000000000000000000000;hpb=0f6eaa570370b9339c30f5c616b3f744f3104a53;p=plomrogue diff --git a/client/query_mapcell.py b/client/query_mapcell.py new file mode 100644 index 0000000..fba374d --- /dev/null +++ b/client/query_mapcell.py @@ -0,0 +1,8 @@ +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)"]