From 2836c8ce4133cb15bafdfdcc368446b507198400 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Sat, 9 Jul 2022 17:36:26 -0700 Subject: [PATCH] lol --- NewHorizons/Handlers/StreamingHandler.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NewHorizons/Handlers/StreamingHandler.cs b/NewHorizons/Handlers/StreamingHandler.cs index 348f6fff..114c5527 100644 --- a/NewHorizons/Handlers/StreamingHandler.cs +++ b/NewHorizons/Handlers/StreamingHandler.cs @@ -51,11 +51,11 @@ namespace NewHorizons.Handlers { foreach (var table in tables) { - foreach (var x in table._materialPropertyLookups) + foreach (var lookup in table._materialPropertyLookups) { - if (materials.Contains(x.material)) + if (materials.Contains(lookup.material)) { - _materialCache.SafeAdd(x.material, table.assetBundle); + _materialCache.SafeAdd(lookup.material, table.assetBundle); assetBundlesList.SafeAdd(table.assetBundle); } }