From da6a462864364527ba267b00e3c0cc3b2f00ab26 Mon Sep 17 00:00:00 2001 From: Mike Molinari Date: Tue, 25 Oct 2022 00:56:45 +0000 Subject: [PATCH] Fix bug in PushPullFaceProductionAnalyzer that would prevent booleans within commands from working. --- web/app/cad/craft/production/productionAnalyzer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/cad/craft/production/productionAnalyzer.ts b/web/app/cad/craft/production/productionAnalyzer.ts index 13752c79..b759de4b 100644 --- a/web/app/cad/craft/production/productionAnalyzer.ts +++ b/web/app/cad/craft/production/productionAnalyzer.ts @@ -527,7 +527,7 @@ export class PushPullFaceProductionAnalyzer extends FromMObjectProductionAnalyze baseFace: Face; constructor(consumed: MObject[], baseFace: Face) { - super(consumed, []); + super(consumed); this.baseFace = baseFace; }