mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 02:30:44 -05:00
Prevent null values from being processed during bundle loading
This commit is contained in:
parent
a48e40b481
commit
f2ddc36d88
@ -24,7 +24,7 @@ namespace Aki.SinglePlayer.Models.RaidFix
|
||||
var loadTask = Singleton<PoolManager>.Instance.LoadBundlesAndCreatePools(
|
||||
PoolManager.PoolsCategory.Raid,
|
||||
PoolManager.AssemblyType.Local,
|
||||
Profile.GetAllPrefabPaths(false).ToArray(),
|
||||
Profile.GetAllPrefabPaths(false).Where(x => !x.IsNullOrEmpty()).ToArray(),
|
||||
JobPriority.General,
|
||||
null,
|
||||
default(CancellationToken));
|
||||
|
Loading…
x
Reference in New Issue
Block a user