From 1665f9e2ce06d3a88b0aae811b42600c9cbfd939 Mon Sep 17 00:00:00 2001 From: Who? <155328415+coddrago@users.noreply.github.com> Date: Sun, 23 Feb 2025 13:43:25 +0700 Subject: [PATCH] Update root.py --- hikka/web/root.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hikka/web/root.py b/hikka/web/root.py index b10f097..cf78e94 100644 --- a/hikka/web/root.py +++ b/hikka/web/root.py @@ -329,7 +329,13 @@ class Web: return web.Response(status=401, body="Authorization required") if self.client_data and "LAVHOST" in os.environ: - return web.Response(status=403, body="Forbidden by host EULA") + return web.Response(status=403, body="Forbidden by lavhost EULA") + + if "JAMHOST" in os.environ: + return web.Response(status=403, body="Forbidden by JamHost EULA") + + if "HIKKAHOST" in os.environ: + return web.Response(status=403, body="Forbidden by HikkaHost EULA") if self._pending_client: return web.Response(status=208, body="Already pending")