1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Fix demo flags

This commit is contained in:
tobspr
2020-09-29 18:42:29 +02:00
parent 1c88b99de3
commit 1c97f3f32a
2 changed files with 4 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import { GameRoot } from "../game/root";
import { newEmptyMap, clamp } from "../core/utils";
import { createLogger } from "../core/logging";
import { globalConfig } from "../core/config";
import { globalConfig, IS_DEMO } from "../core/config";
const logger = createLogger("sound");
@@ -29,7 +29,7 @@ export const SOUNDS = {
};
export const MUSIC = {
theme: G_IS_STANDALONE ? "theme-full" : "theme-short",
theme: IS_DEMO ? "theme-short" : "theme-full",
menu: "menu",
};