From 794abfdb507d843e26ed4b5f7b867c31e3280c4d Mon Sep 17 00:00:00 2001 From: bombcar Date: Thu, 25 Nov 2021 13:38:00 -0600 Subject: [PATCH] fix typo --- .../scala/li/cil/oc/server/machine/luac/LuaStateFactory.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/li/cil/oc/server/machine/luac/LuaStateFactory.scala b/src/main/scala/li/cil/oc/server/machine/luac/LuaStateFactory.scala index 68deb59a6..b33fa65aa 100644 --- a/src/main/scala/li/cil/oc/server/machine/luac/LuaStateFactory.scala +++ b/src/main/scala/li/cil/oc/server/machine/luac/LuaStateFactory.scala @@ -116,7 +116,7 @@ abstract class LuaStateFactory { else if (SystemUtils.IS_OS_FREE_BSD && Architecture.IS_OS_X86) "native.32.bsd.so" else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_ARM) "native.32.arm.so" - else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_ARM) "native.64.arm.so" + else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_A64) "native.64.arm.so" else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_X64) "native.64.so" else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_X86) "native.32.so" @@ -419,4 +419,4 @@ abstract class LuaStateFactory { private def isOSArchMatch(archPrefix: String): Boolean = OS_ARCH != null && OS_ARCH.startsWith(archPrefix) } -} \ No newline at end of file +}