Fix placement mode staying active

This commit is contained in:
tobspr 2020-06-22 15:34:36 +02:00
parent 0b95f3b208
commit cd0b43d4ff
1 changed files with 7 additions and 0 deletions

View File

@ -184,6 +184,13 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
if (mousePos) {
this.onMouseMove(mousePos);
}
// Make sure we have nothing selected while in overview mode
if (this.root.camera.getIsMapOverlayActive()) {
if (this.currentMetaBuilding.get()) {
this.currentMetaBuilding.set(null);
}
}
}
/**