Fix bug in PushPullFaceProductionAnalyzer that would prevent booleans within commands from working.

This commit is contained in:
Mike Molinari 2022-10-25 00:56:45 +00:00 committed by Val Erastov
parent 4affb703a5
commit da6a462864

View file

@ -527,7 +527,7 @@ export class PushPullFaceProductionAnalyzer extends FromMObjectProductionAnalyze
baseFace: Face;
constructor(consumed: MObject[], baseFace: Face) {
super(consumed, []);
super(consumed);
this.baseFace = baseFace;
}