Update most of script.js

This commit is contained in:
Hri7566 2024-11-02 16:34:37 -04:00
parent 9121d62065
commit 4acb741634
1 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,7 @@ interface IFrontendConfig {
createdRoomSocialLinks: boolean;
playingAloneSocialLinks: boolean;
motd: string;
hideChatOnDisconnect: boolean;
}
export const frontendConfigPath = "config/frontend.yml";
@ -39,7 +40,8 @@ export const frontendConfig = ConfigManager.loadConfig<IFrontendConfig>(
enableSlide: false,
createdRoomSocialLinks: false,
playingAloneSocialLinks: false,
motd: "This site makes a lot of sound! You may want to adjust the volume before continuing."
motd: "This site makes a lot of sound! You may want to adjust the volume before continuing.",
hideChatOnDisconnect: false
}
);