From c3b343b4bf7c77cc4d1c3f51716f3db00b9e2260 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Wed, 28 Dec 2022 12:11:56 -0800 Subject: [PATCH] be more specific --- NewHorizons/Patches/StreamingPatches.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Patches/StreamingPatches.cs b/NewHorizons/Patches/StreamingPatches.cs index e877a789..b188106c 100644 --- a/NewHorizons/Patches/StreamingPatches.cs +++ b/NewHorizons/Patches/StreamingPatches.cs @@ -20,7 +20,7 @@ namespace NewHorizons.Patches public static bool UnityLogger_OnLogMessageReceived(string message) { // Filter out goofy error that doesn't actually break anything - return !message.Contains(" is out of bounds (size=0)"); + return !message.EndsWith(" is out of bounds (size=0)"); } } }