fix step while inside subscope

This commit is contained in:
LenAnderson 2024-06-23 15:21:13 -04:00
parent 00652cce0a
commit ca70304248
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ export class SlashCommandDebugController {
this.stepStack.forEach((_,idx)=>this.stepStack[idx] = false);
}
step() {
this.stepStack[this.stepStack.length - 1] = true;
this.stepStack.forEach((_,idx)=>this.stepStack[idx] = true);
this.continueResolver?.(true);
this.continuePromise = null;
}