diff --git a/src/servers.ts b/src/servers.ts index 43fb64c..5a1e651 100644 --- a/src/servers.ts +++ b/src/servers.ts @@ -149,12 +149,12 @@ export async function getServersList(request: Request) { if (request.cf?.country == 'RU') { response.settings = { DonateUrl: DONATE_URL_RU, - NY: 'true', // Must be `string` instead of `bool`, otherwise clients will crash + NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash }; } else { response.settings = { DonateUrl: DONATE_URL, - NY: 'true', // Must be `string` instead of `bool`, otherwise clients will crash + NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash }; } }