X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=server%2Fconfig%2Fio.py;h=e134b2f6af6a7d9c1be8430a16a74acd62430a87;hb=f6aaa7bb097833e3aac306cf23763e23708b861a;hp=2f22a284962b1440fb41c63084fddcddd8dbe03d;hpb=fa1580196b809e6f14e59e59fe92d36664b49f27;p=plomrogue diff --git a/server/config/io.py b/server/config/io.py index 2f22a28..e134b2f 100644 --- a/server/config/io.py +++ b/server/config/io.py @@ -1,3 +1,8 @@ +# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 +# or any later version. For details on its copyright, license, and warranties, +# see the file NOTICE in the root directory of the PlomRogue source package. + + """File IO database.""" io_db = { "path_save": "save", @@ -9,6 +14,8 @@ io_db = { "path_worldstate": "server_run/worldstate", "tmp_suffix": "_tmp", "kicked_by_rival": False, - "worldstate_updateable": False + "worldstate_updateable": False, + "wait_on_read_fail": 0.03333, + "max_wait_on_read_fail": 5, + "save_wait": 15 } -