Skip to content

Commit 1356e04

Browse files
authored
Merge pull request #1108 from UE4SS-RE/BPModsCustomConfig
fix(BPModLoaderMod): Fixed config.lua not being able to access the 'Mods' variable to apply the custom config
2 parents 1de44cf + d0c57d0 commit 1356e04

File tree

1 file changed

+1
-1
lines changed
  • assets/Mods/BPModLoaderMod/Scripts

1 file changed

+1
-1
lines changed

assets/Mods/BPModLoaderMod/Scripts/main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ end
1010
package.path = '.\\Mods\\ModLoaderMod\\?.lua;' .. package.path
1111
package.path = '.\\Mods\\ModLoaderMod\\BPMods\\?.lua;' .. package.path
1212

13-
local Mods = {}
13+
Mods = {}
1414
local OrderedMods = {}
1515

1616
-- Contains mod names from Mods/BPModLoaderMod/load_order.txt and is used to determine the load order of BP mods.

0 commit comments

Comments
 (0)