File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,19 @@ premake.modules.install_data = {}
5
5
-- Config variables
6
6
local BIN_DIR = " Bin"
7
7
local DATA_DIR = " Shared/data/MTA San Andreas"
8
+ local BASE_URL = " https://mirror-cdn.multitheftauto.com/bdata/"
8
9
9
- local NET_PATH_X86_WIN = " https://mirror-cdn.multitheftauto.com/bdata/ net.dll"
10
- local NET_PATH_X64_WIN = " https://mirror-cdn.multitheftauto.com/bdata/ net_64.dll"
11
- local NET_PATH_ARM64_WIN = " https://mirror-cdn.multitheftauto.com/bdata/ net_arm64.dll"
12
- local NETC_PATH_WIN = " https://mirror-cdn.multitheftauto.com/bdata/ netc.dll"
10
+ local NET_PATH_X86_WIN = BASE_URL .. " net.dll"
11
+ local NET_PATH_X64_WIN = BASE_URL .. " net_64.dll"
12
+ local NET_PATH_ARM64_WIN = BASE_URL .. " net_arm64.dll"
13
+ local NETC_PATH_WIN = BASE_URL .. " netc.dll"
13
14
14
- local NET_PATH_X86_LINUX = " https://mirror-cdn.multitheftauto.com/bdata/ net.so"
15
- local NET_PATH_X64_LINUX = " https://mirror-cdn.multitheftauto.com/bdata/ net_64.so"
16
- local NET_PATH_ARM_LINUX = " https://mirror-cdn.multitheftauto.com/bdata/ net_arm.so"
17
- local NET_PATH_ARM64_LINUX = " https://mirror-cdn.multitheftauto.com/bdata/ net_arm64.so"
15
+ local NET_PATH_X86_LINUX = BASE_URL .. " net.so"
16
+ local NET_PATH_X64_LINUX = BASE_URL .. " net_64.so"
17
+ local NET_PATH_ARM_LINUX = BASE_URL .. " net_arm.so"
18
+ local NET_PATH_ARM64_LINUX = BASE_URL .. " net_arm64.so"
18
19
19
- local NET_PATH_X64_MACOS = " https://mirror-cdn.multitheftauto.com/bdata/ net.dylib"
20
+ local NET_PATH_X64_MACOS = BASE_URL .. " net.dylib"
20
21
21
22
newaction {
22
23
trigger = " install_data" ,
You can’t perform that action at this time.
0 commit comments