fix adding constant signal editing to puzzle editor (#1399)

pull/1386/merge 1.5.1
Emerald Block 2 years ago committed by GitHub
parent ced9e186f5
commit 4e5e5c8ef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,6 +22,7 @@ import { MetaTransistorBuilding } from "../buildings/transistor";
import { HUDPuzzleEditorControls } from "../hud/parts/puzzle_editor_controls";
import { HUDPuzzleEditorReview } from "../hud/parts/puzzle_editor_review";
import { HUDPuzzleEditorSettings } from "../hud/parts/puzzle_editor_settings";
import { HUDConstantSignalEdit } from "../hud/parts/constant_signal_edit";
export class PuzzleEditGameMode extends PuzzleGameMode {
static getId() {
@ -58,6 +59,7 @@ export class PuzzleEditGameMode extends PuzzleGameMode {
this.additionalHudParts.puzzleEditorControls = HUDPuzzleEditorControls;
this.additionalHudParts.puzzleEditorReview = HUDPuzzleEditorReview;
this.additionalHudParts.puzzleEditorSettings = HUDPuzzleEditorSettings;
this.additionalHudParts.constantSignalEdit = HUDConstantSignalEdit;
}
getIsEditor() {

Loading…
Cancel
Save