diff --git a/clientmods/turtle/tlang_vm.lua b/clientmods/turtle/tlang_vm.lua index 39a5d0d08..824f2eb8b 100644 --- a/clientmods/turtle/tlang_vm.lua +++ b/clientmods/turtle/tlang_vm.lua @@ -304,7 +304,7 @@ function tlang.binary(func) local tos = statepop_num(state) local tos1 = statepop_num(state) - statepush_num(state, func(tos.value, tos1.value)) + statepush_num(state, func(tos1.value, tos.value)) end end