1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-05 17:14:03 +00:00

Fix belt planner placing down once a dialog pops up

This commit is contained in:
tobspr 2020-09-19 21:04:41 +02:00
parent 749383a318
commit 7def60c050

View File

@ -253,6 +253,12 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
* @see BaseHUDPart.update
*/
update() {
// Abort placement if a dialog was shown in the meantime
if (this.root.hud.hasBlockingOverlayOpen()) {
this.abortPlacement();
return;
}
// Always update since the camera might have moved
const mousePos = this.root.app.mousePosition;
if (mousePos) {