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)"); } } }