From ab775f47dee1c8c35602b6013b42f0d17845b65e Mon Sep 17 00:00:00 2001 From: jtuu Date: Sun, 26 Apr 2020 21:21:10 +0300 Subject: [PATCH] Fixed jmp_on --- src/quest_editor/scripting/vm/VirtualMachine.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/quest_editor/scripting/vm/VirtualMachine.ts b/src/quest_editor/scripting/vm/VirtualMachine.ts index 5c1a7649..4802cc87 100644 --- a/src/quest_editor/scripting/vm/VirtualMachine.ts +++ b/src/quest_editor/scripting/vm/VirtualMachine.ts @@ -657,11 +657,11 @@ export class VirtualMachine { break; // conditional jumps case OP_JMP_ON.code: - // all eq 1? + // all nonzero? this.conditional_jump( thread, arg0, - (a, b) => a === b, + (_, b) => b !== 0, 1, ...rest(arg_vals).map(reg => this.get_register_signed(reg)), );