From ce4072fed09089023021b2bad0e3e8064c72b8fc Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Wed, 28 Dec 2022 12:16:56 -0800 Subject: [PATCH] check null here --- NewHorizons/Builder/Props/NomaiTextBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Builder/Props/NomaiTextBuilder.cs b/NewHorizons/Builder/Props/NomaiTextBuilder.cs index 54aaa96a..25cc09bc 100644 --- a/NewHorizons/Builder/Props/NomaiTextBuilder.cs +++ b/NewHorizons/Builder/Props/NomaiTextBuilder.cs @@ -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); }