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

Add semicolon

This commit is contained in:
EmeraldBlock 2020-10-21 17:59:54 -05:00
parent 0cccf1cb6e
commit 4045081e52

View File

@ -71,7 +71,7 @@ export class HUDSandboxController extends BaseHUDPart {
const bind = (selector, handler) => this.trackClicks(this.element.querySelector(selector), handler);
bind(".levelOverride", this.promptOverrideLevel);
bind(".levelUp", this.tryLevelUp)
bind(".levelUp", this.tryLevelUp);
bind(".bigMinus", () => this.modifyAll(-100));
bind(".bigPlus", () => this.modifyAll(100));
bind(".giveBlueprints", this.giveBlueprints);