mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
check null here
This commit is contained in:
parent
ca07710866
commit
ce4072fed0
@ -614,7 +614,7 @@ namespace NewHorizons.Builder.Props
|
||||
nomaiWallText.SetTextAsset(text);
|
||||
|
||||
// #433 fuzzy stranger text
|
||||
if (info.arcInfo.Any(x => x.type == PropModule.NomaiTextArcInfo.NomaiTextArcType.Stranger))
|
||||
if (info.arcInfo != null && info.arcInfo.Any(x => x.type == PropModule.NomaiTextArcInfo.NomaiTextArcType.Stranger))
|
||||
{
|
||||
StreamingHandler.SetUpStreaming(AstroObject.Name.RingWorld, sector);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user