Minor hotfixes

This commit is contained in:
tobspr 2020-12-07 20:14:23 +01:00
parent b5a96a91a9
commit 22735591e9
2 changed files with 1 additions and 3 deletions

View File

@ -126,6 +126,7 @@ export class HUDBlueprintPlacer extends BaseHUDPart {
this.root.hubGoals.takeShapeByKey(this.root.gameMode.getBlueprintShapeKey(), cost); this.root.hubGoals.takeShapeByKey(this.root.gameMode.getBlueprintShapeKey(), cost);
this.root.soundProxy.playUi(SOUNDS.placeBuilding); this.root.soundProxy.playUi(SOUNDS.placeBuilding);
} }
return STOP_PROPAGATION;
} }
} }

View File

@ -23,9 +23,6 @@ export class HUDConstantSignalEdit extends BaseHUDPart {
deleteOnCancel: false, deleteOnCancel: false,
}); });
return STOP_PROPAGATION; return STOP_PROPAGATION;
} else if (button === enumMouseButton.right) {
this.root.logic.tryDeleteBuilding(contents);
return STOP_PROPAGATION;
} }
} }
} }