From ffe9095d2e58b670b1c30bc99db88e966442a35e Mon Sep 17 00:00:00 2001 From: tobspr Date: Sun, 19 Jun 2022 17:11:23 +0200 Subject: [PATCH] Disable automatic background switch in map view when placing buildings --- src/js/game/map_view.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/game/map_view.js b/src/js/game/map_view.js index bbd6a82e..ab7d940a 100644 --- a/src/js/game/map_view.js +++ b/src/js/game/map_view.js @@ -233,7 +233,9 @@ export class MapView extends BaseMap { parameters.context.scale(1 / dpi, 1 / dpi); let key = "regular"; - if (this.root.hud.parts.buildingPlacer.currentMetaBuilding.get()) { + + // Disabled rn because it can be really annoying + if (this.root.hud.parts.buildingPlacer.currentMetaBuilding.get() && false) { key = "placing"; }