From 50f281969980c02c6cd97aa37e58af3115df22ef Mon Sep 17 00:00:00 2001 From: n1474335 Date: Wed, 14 Feb 2018 10:34:08 +0000 Subject: [PATCH] OR now calls the correct function instead of duplicating XOR. Closes #243. --- src/core/config/modules/Default.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/config/modules/Default.js b/src/core/config/modules/Default.js index 23bea2da..d59b7b21 100644 --- a/src/core/config/modules/Default.js +++ b/src/core/config/modules/Default.js @@ -92,7 +92,7 @@ OpModules.Default = { "Bit shift right": BitwiseOp.runBitShiftRight, "XOR": BitwiseOp.runXor, "XOR Brute Force": BitwiseOp.runXorBrute, - "OR": BitwiseOp.runXor, + "OR": BitwiseOp.runOr, "NOT": BitwiseOp.runNot, "AND": BitwiseOp.runAnd, "ADD": BitwiseOp.runAdd,