We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b45b7f8 commit 0133fe5Copy full SHA for 0133fe5
src/001-constants.lua
@@ -1,3 +1,4 @@
1
+local MINIMUM_XENO_VERSION = 1169
2
local LIB_REVISION = '{{VERSION}}'
3
local LIB_CONFIG = [[{{CONFIG}}]]
4
local FOLDER_SETTINGS_PATH = '..\\Settings\\'
src/015-main.lua
@@ -38,8 +38,8 @@ local function init()
38
end
39
40
-- Only allow XenoBot Binary
41
- if not isXenoBotBinary() then
42
- print('You are using an older version of XenoBot. Update to XenoBot Binary to run this script.')
+ if getXenoVersion() < MINIMUM_XENO_VERSION then
+ print('You are using an older version of XenoBot. Update to the latest version of XenoBot to run this script.')
43
return
44
45
0 commit comments