Disable automatic background switch in map view when placing buildings

This commit is contained in:
tobspr 2022-06-19 17:11:23 +02:00
parent 1642354f40
commit ffe9095d2e
1 changed files with 3 additions and 1 deletions

View File

@ -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";
}