Disable browser warning

This commit is contained in:
tobspr 2022-06-17 17:58:33 +02:00
parent 4c515eb6e8
commit 7fe088a0c8
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ export class MainMenuState extends GameState {
getInnerHTML() {
const showLanguageIcon = !G_CHINA_VERSION && !G_WEGAME_VERSION;
const showExitAppButton = G_IS_STANDALONE;
const showBrowserWarning = !G_IS_STANDALONE && !isSupportedBrowser();
// const showBrowserWarning = !G_IS_STANDALONE && !isSupportedBrowser();
const showBrowserWarning = false;
const showPuzzleDLC = !G_WEGAME_VERSION && G_IS_STANDALONE && !G_IS_STEAM_DEMO;
const showWegameFooter = G_WEGAME_VERSION;
const hasMods = MODS.anyModsActive();