0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 02:10:44 -05:00

Fix german locales not working because bsg map DE to GE for some reason

This commit is contained in:
Dev 2024-03-10 12:37:47 +00:00
parent 4ce4663fbe
commit 68d0007545

View File

@ -149,6 +149,12 @@ export class LocaleService
return "cz";
}
// BSG map De to GE some reason
if (platformLocale.language === "de")
{
return "ge";
}
return langaugeCode;
}
}