fix step while inside subscope
This commit is contained in:
parent
00652cce0a
commit
ca70304248
|
@ -51,7 +51,7 @@ export class SlashCommandDebugController {
|
||||||
this.stepStack.forEach((_,idx)=>this.stepStack[idx] = false);
|
this.stepStack.forEach((_,idx)=>this.stepStack[idx] = false);
|
||||||
}
|
}
|
||||||
step() {
|
step() {
|
||||||
this.stepStack[this.stepStack.length - 1] = true;
|
this.stepStack.forEach((_,idx)=>this.stepStack[idx] = true);
|
||||||
this.continueResolver?.(true);
|
this.continueResolver?.(true);
|
||||||
this.continuePromise = null;
|
this.continuePromise = null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue