home · contact · privacy
Change path of server run data directory from server/ to server_run/.
[plomrogue] / client / config / io.py
1 io = {
2     "path_out": "server_run/in",
3     "path_in": "server_run/out",
4     "path_worldstate": "server_run/worldstate",
5     "worldstate_read_order": [
6         ["lifepoints", "int"],
7         ["satiation", "int"],
8         ["inventory", "lines"],
9         ["avatar_position", "int", 0],
10         ["avatar_position", "int", 1],
11         ["map_size", "int"],
12         ["fov_map", "map"],
13         ["mem_map", "map"]
14     ]
15 }