mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Modified QuestRunner to set paused state to false every time the execution loop is started regardless of whether any breakpoints are hit.
This commit is contained in:
parent
b24afee12a
commit
d16c1634ba
@ -155,7 +155,7 @@ export class QuestRunner {
|
||||
private execution_loop = (): void => {
|
||||
let result: ExecutionResult;
|
||||
|
||||
let need_emit_unpause = this.paused.val;
|
||||
this._paused.val = false;
|
||||
|
||||
exec_loop: while (true) {
|
||||
if (this.executed_since_advance) {
|
||||
@ -185,12 +185,6 @@ export class QuestRunner {
|
||||
break exec_loop;
|
||||
}
|
||||
}
|
||||
|
||||
// first instruction after pause did not break, set state to unpaused
|
||||
if (need_emit_unpause) {
|
||||
need_emit_unpause = false;
|
||||
this._paused.val = false;
|
||||
}
|
||||
}
|
||||
|
||||
result = this.vm.execute(false);
|
||||
|
Loading…
Reference in New Issue
Block a user