From 1c0dfcc4b77565e5b420d9ef6d6f3a1c56b22083 Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Sun, 24 Aug 2025 14:41:34 +1000 Subject: [PATCH] Fix not --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index a992cf8..2444d5c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1770,6 +1770,7 @@ vector parser(vector> in) { else if (i == "lesser") newInst.inst = Instructions::Lesser; else if (i == "equal") newInst.inst = Instructions::Equal; else if (i == "inequal") newInst.inst = Instructions::Inequal; + else if (i == "not") newInst.inst = Instructions::Not; else if (i == "end") newInst.inst = Instructions::End; else if (i == "set") newInst.inst = Instructions::Set; else if (i == "setlist") newInst.inst = Instructions::Setlist;