From b1e64c1491ba6a706af3c6e4cc557fb1c1ac41b6 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Thu, 13 Feb 2025 13:54:03 -0800 Subject: [PATCH] dont need to check CacheExists --- NewHorizons/Builder/Props/ProjectionBuilder.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/NewHorizons/Builder/Props/ProjectionBuilder.cs b/NewHorizons/Builder/Props/ProjectionBuilder.cs index 1532fbe1..54141a30 100644 --- a/NewHorizons/Builder/Props/ProjectionBuilder.cs +++ b/NewHorizons/Builder/Props/ProjectionBuilder.cs @@ -164,7 +164,7 @@ namespace NewHorizons.Builder.Props var key = GetUniqueSlideReelID(mod, info.slides); - if (CacheExists(mod) && atlasImageLoader != null) + if (atlasImageLoader != null) { atlasImageLoader.imageLoadedEvent.AddListener( (Texture2D tex, int _, string originalPath) => @@ -585,7 +585,6 @@ namespace NewHorizons.Builder.Props { atlasImageLoader.Start(false, false); } - // When using the inverted cache we never need the regular images if (useInvertedCache) { invertedImageLoader.Start(true, false);