diff --git a/MelonLoader/Fixes/InstancePatchFix.cs b/MelonLoader/Fixes/InstancePatchFix.cs index 531fa082c..abffbd09f 100644 --- a/MelonLoader/Fixes/InstancePatchFix.cs +++ b/MelonLoader/Fixes/InstancePatchFix.cs @@ -28,7 +28,7 @@ private static bool PatchMethod(MethodBase __0) if (__0 == null) throw new NullReferenceException("Patch Method"); if ((__0 != null) && !__0.IsStatic) - throw new Exception("Patch Method can't be an Instance Method!"); + throw new Exception("Patch Method must be a Static Method!"); return true; } } diff --git a/README.md b/README.md index 3fb1f550a..cde3bd7b0 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ - All Logs are made in the created MelonLoader/Logs folder in your Game's Installation Folder. - All Plugins get placed in the created Plugins folder in your Game's Installation Folder. - All Mods get placed in the created Mods folder in your Game's Installation Folder. +- Start Screen Image can be Customized by placing an image in ``UserData/Loading.gif``

- [The Official Wiki](https://melonwiki.xyz) - [Proxies](#proxies)