From 94ff4a02bda9f09ac0382da7120e12672a11a36c Mon Sep 17 00:00:00 2001 From: Onran <100285264+Onran0@users.noreply.github.com> Date: Sun, 6 Apr 2025 23:32:23 +0900 Subject: [PATCH] Add files via upload --- res/modules/bitwise/compiler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/modules/bitwise/compiler.lua b/res/modules/bitwise/compiler.lua index ce56c056..4f4d92ad 100644 --- a/res/modules/bitwise/compiler.lua +++ b/res/modules/bitwise/compiler.lua @@ -57,7 +57,7 @@ local function compile(str, args, asFunction) if not b then util.stack.push(stack, fun..'('..a..')') else - util.stack.push(stack, fun..'('..a..','..b..')') + util.stack.push(stack, fun..'('..b..','..a..')') end end end