be more specific

This commit is contained in:
JohnCorby 2022-12-28 12:11:56 -08:00
parent f8de674a6d
commit c3b343b4bf

View File

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