mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Requires DLC check was NREing
This commit is contained in:
parent
e1c23b2a84
commit
563370119a
19
NewHorizons/External/NewHorizonBody.cs
vendored
19
NewHorizons/External/NewHorizonBody.cs
vendored
@ -28,11 +28,20 @@ namespace NewHorizons.External
|
||||
|
||||
public bool RequiresDLC()
|
||||
{
|
||||
var detailPaths = Config.Props.details.Select(x => x.path);
|
||||
return Config.Cloak != null
|
||||
|| Config.Props?.rafts != null
|
||||
|| Config.Props?.slideShows != null
|
||||
|| detailPaths.Any(x => x.StartsWith("RingWorld_Body") || x.StartsWith("DreamWorld_Body"));
|
||||
try
|
||||
{
|
||||
var detailPaths = Config?.Props?.details?.Select(x => x.path) ?? Array.Empty<string>();
|
||||
return Config?.Cloak != null
|
||||
|| Config?.Props?.rafts != null
|
||||
|| Config?.Props?.slideShows != null
|
||||
|| detailPaths.Any(x => x.StartsWith("RingWorld_Body") || x.StartsWith("DreamWorld_Body"));
|
||||
}
|
||||
catch
|
||||
{
|
||||
NHLogger.LogWarning($"Failed to check if {Mod.ModHelper.Manifest.Name} requires the DLC");
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#region Cache
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
"author": "xen, Bwc9876, clay, MegaPiggy, John, Trifid, Hawkbar, Book",
|
||||
"name": "New Horizons",
|
||||
"uniqueName": "xen.NewHorizons",
|
||||
"version": "1.18.5",
|
||||
"version": "1.18.6",
|
||||
"owmlVersion": "2.9.8",
|
||||
"dependencies": [ "JohnCorby.VanillaFix", "_nebula.MenuFramework", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ],
|
||||
"conflicts": [ "Raicuparta.QuantumSpaceBuddies", "PacificEngine.OW_CommonResources" ],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user