Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
Decompiled source of NoMoreOvercharge v1.0.1
NoMoreOvercharge.dll
Decompiled a year agousing System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Versioning; using BepInEx; using HarmonyLib; using UnityEngine; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: AssemblyTitle("NoMoreOvercharge")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("NoMoreOvercharge")] [assembly: AssemblyCopyright("Copyright © 2025")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("b57b88f8-7169-4529-aad1-7025c904f02e")] [assembly: AssemblyFileVersion("1.0.1.0")] [assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] [assembly: AssemblyVersion("1.0.1.0")] namespace NoMoreOvercharge { [BepInPlugin("it.pippopad.NoMoreOvercharge", "NoMoreOvercharge", "1.0.1")] public class NoMoreOverchargeMod : BaseUnityPlugin { public static NoMoreOverchargeMod instance; private void Awake() { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)instance != (Object)null)) { instance = this; new Harmony("it.pippopad.NoMoreOvercharge").PatchAll(); ((BaseUnityPlugin)this).Logger.LogInfo((object)"NoMoreOvercharge has started!"); } } } internal static class PluginInfo { public const string PLUGIN_GUID = "it.pippopad.NoMoreOvercharge"; public const string PLUGIN_NAME = "NoMoreOvercharge"; public const string PLUGIN_VERSION = "1.0.1"; } } namespace NoMoreOvercharge.Patches { [HarmonyPatch(typeof(PhysGrabber), "PhysGrabOverCharge")] internal class PhysGrabber_PhysGrabOverCharge { public static bool Prefix() { return false; } } }