From b0181cc56a9a7158c34a7deb7a6b01d9441410fc Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Tue, 18 Jun 2024 15:23:52 +0100 Subject: [PATCH] Update astNodes.cpp missed naming --- Engine/source/console/torquescript/astNodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/console/torquescript/astNodes.cpp b/Engine/source/console/torquescript/astNodes.cpp index 00e2d2d67..17d96c961 100644 --- a/Engine/source/console/torquescript/astNodes.cpp +++ b/Engine/source/console/torquescript/astNodes.cpp @@ -214,7 +214,7 @@ U32 IfStmtNode::compileStmt(CodeStream& codeStream, U32 ip) if (testType == TypeReqString || testType == TypeReqNone) { ip = testExpr->compile(codeStream, ip, TypeReqString); - codeStream.emit(OP_JMPSTRING); + codeStream.emit(OP_JMPNOTSTRING); } else {