diff --git a/src/css/states/preload.scss b/src/css/states/preload.scss
index 514c60d2..2e14abd6 100644
--- a/src/css/states/preload.scss
+++ b/src/css/states/preload.scss
@@ -17,7 +17,7 @@
@include S(border-radius, 3px);
@include DarkThemeOverride {
- background: #424242;
+ background: #33343c;
}
.version {
diff --git a/src/js/changelog.js b/src/js/changelog.js
index 61c1c79a..c66da8ef 100644
--- a/src/js/changelog.js
+++ b/src/js/changelog.js
@@ -2,10 +2,21 @@ export const CHANGELOG = [
{
version: "1.3.1",
date: "beta",
- entries: [
- "Fixed savegames getting corrupt in rare conditions",
- "Fixed game crashing sometimes since the achievements update",
- ],
+ entries: G_CHINA_VERSION
+ ? [
+ "The level 13 shape has been changed to reflect the chinese symbol 'Ancient Chinese Compass', created by 凯风入心",
+ "The level 17 shape has been changed to reflect the chinese symbol 'Yongle Coins of Ming Dynasty', created by 金天赐",
+ "The level 22 shape has been changed to reflect the chinese symbol 'Phoenix', created by 我没得眼镜",
+ "The level 23 shape has been changed to reflect the chinese symbol 'Ancient wheel', created by 百京清真卤煮",
+ "The level 24 shape has been changed to reflect the chinese symbol 'Panda', created by 窝囸倪现任",
+
+ "Fixed savegames getting corrupt in rare conditions",
+ "Fixed game crashing sometimes since the achievements update",
+ ]
+ : [
+ "Fixed savegames getting corrupt in rare conditions",
+ "Fixed game crashing sometimes since the achievements update",
+ ],
},
{
version: "1.3.0",
diff --git a/src/js/game/hud/hud.js b/src/js/game/hud/hud.js
index d64f96a8..ceeb224e 100644
--- a/src/js/game/hud/hud.js
+++ b/src/js/game/hud/hud.js
@@ -142,9 +142,7 @@ export class GameHUD {
this.parts.colorBlindHelper = new HUDColorBlindHelper(this.root);
}
- if (queryParamOptions.sandboxMode || G_IS_DEV) {
- this.parts.sandboxController = new HUDSandboxController(this.root);
- }
+ this.parts.sandboxController = new HUDSandboxController(this.root);
if (!G_IS_RELEASE && !G_IS_DEV) {
this.parts.betaOverlay = new HUDBetaOverlay(this.root);
diff --git a/src/js/game/hud/parts/sandbox_controller.js b/src/js/game/hud/parts/sandbox_controller.js
index 592487ee..a912015e 100644
--- a/src/js/game/hud/parts/sandbox_controller.js
+++ b/src/js/game/hud/parts/sandbox_controller.js
@@ -1,3 +1,4 @@
+import { queryParamOptions } from "../../../core/query_parameters";
import { makeDiv } from "../../../core/utils";
import { BaseHUDPart } from "../base_hud_part";
import { DynamicDomAttach } from "../dynamic_dom_attach";
@@ -19,25 +20,25 @@ export class HUDSandboxController extends BaseHUDPart {
-
+