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 +}