home · contact · privacy
Server: Make world initialization conf file choosable.
[plomrogue] / server / config / io.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 """File IO database."""
7 io_db = {
8     "path_save": "save",
9     "path_record": "record_save",
10     "path_server": "server_run/",
11     "path_in": "server_run/in",
12     "path_out": "server_run/out",
13     "path_worldstate": "server_run/worldstate",
14     "tmp_suffix": "_tmp",
15     "kicked_by_rival": False,
16     "worldstate_updateable": False,
17     "wait_on_read_fail": 0.03333,
18     "max_wait_on_read_fail": 5,
19     "save_wait": 15
20 }