[Bug] [#433] Load streaming stuff for stranger text

This commit is contained in:
Nick 2022-12-12 18:25:56 -05:00
parent d56a2f605f
commit 3ea3fa9e16

View File

@ -613,6 +613,12 @@ namespace NewHorizons.Builder.Props
nomaiWallText.SetTextAsset(text); nomaiWallText.SetTextAsset(text);
// #433 fuzzy stranger text
if (info.arcInfo.Any(x => x.type == PropModule.NomaiTextArcInfo.NomaiTextArcType.Stranger))
{
StreamingHandler.SetUpStreaming(_ghostArcPrefabs.First(), sector);
}
return nomaiWallText; return nomaiWallText;
} }