Minor adjustments

This commit is contained in:
tobspr 2020-12-07 18:39:12 +01:00
parent 1230b873aa
commit 3b268294df
2 changed files with 2 additions and 3 deletions

View File

@ -9,6 +9,7 @@ export const CHANGELOG = [
"Allow to cycle variants backwards with SHIFT + T",
"Upgrade numbers now use roman numerals until tier 50 (by LeopoldTal)",
"Add button to unpin shapes from the left side (by artemisSystem)",
"Fix middle mouse button also placing blueprints (by Eiim)",
"Updated translations (Thanks to all contributors!)",
],
},

View File

@ -108,9 +108,7 @@ export class HUDBlueprintPlacer extends BaseHUDPart {
this.abortPlacement();
return STOP_PROPAGATION;
}
}
if (button === enumMouseButton.left) {
} else if (button === enumMouseButton.left) {
const blueprint = this.currentBlueprint.get();
if (!blueprint) {
return;