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:
@@ -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",
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user