Fix server bounds validation, cooldown timing, and broadcast fanout

This commit is contained in:
Jage9
2026-02-21 17:19:27 -05:00
parent fe32cd28f2
commit 3027ea04b9
6 changed files with 154 additions and 5 deletions

View File

@@ -10,6 +10,7 @@ def test_load_config_defaults_when_path_none() -> None:
assert cfg.server.bind_ip == "127.0.0.1"
assert cfg.network.allow_insecure_ws is True
assert cfg.storage.state_file == "runtime/items.json"
assert cfg.world.grid_size == 41
def test_load_config_requires_tls_when_insecure_disabled(tmp_path: Path) -> None: