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 Unstrippable v1.1.0
Unstrippable.dll
Decompiled a week agousing System; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using BepInEx; using BepInEx.Configuration; using BepInEx.Logging; using HarmonyLib; using Microsoft.CodeAnalysis; using UnityEngine; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: AssemblyTitle("Unstrippable")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Unstrippable")] [assembly: AssemblyCopyright("Copyright © 2023")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("08a78e99-5cad-4ca4-aaff-3a29533025b9")] [assembly: AssemblyFileVersion("1.1.0")] [assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.1.0.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [Embedded] [AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)] internal sealed class RefSafetyRulesAttribute : Attribute { public readonly int Version; public RefSafetyRulesAttribute(int P_0) { Version = P_0; } } } namespace Unstrippable { public static class PluginConfig { public static ConfigFile CurrentConfig { get; private set; } public static ConfigEntry<bool> IsModEnabled { get; private set; } public static void BindConfig(ConfigFile config) { CurrentConfig = config; IsModEnabled = config.Bind<bool>("_Global", "isModEnabled", true, "Globally enable or disable this mod."); } } [HarmonyPatch(typeof(ZDO))] internal static class ZDOPatch { [HarmonyPrefix] [HarmonyPatch("Strip", new Type[] { typeof(int) })] [HarmonyPatch("Strip", new Type[] { typeof(int), typeof(long) })] [HarmonyPatch("Strip", new Type[] { typeof(int), typeof(int) })] [HarmonyPatch("Strip", new Type[] { typeof(int), typeof(Quaternion) })] [HarmonyPatch("Strip", new Type[] { typeof(int), typeof(string) })] [HarmonyPatch("Strip", new Type[] { typeof(int), typeof(byte[]) })] [HarmonyPatch("StripConvert", new Type[] { typeof(ZDOID), typeof(int), typeof(long) })] [HarmonyPatch("StripConvert", new Type[] { typeof(ZDOID), typeof(int), typeof(Vector3) })] [HarmonyPatch("StripLong", new Type[] { typeof(int) })] private static bool StripPrefix(ref bool __result) { if (PluginConfig.IsModEnabled.Value) { __result = false; return false; } return true; } } [BepInPlugin("redseiko.valheim.unstrippable", "Unstrippable", "1.1.0")] public sealed class Unstrippable : BaseUnityPlugin { public const string PluginGuid = "redseiko.valheim.unstrippable"; public const string PluginName = "Unstrippable"; public const string PluginVersion = "1.1.0"; private static ManualLogSource _logger; private void Awake() { _logger = ((BaseUnityPlugin)this).Logger; PluginConfig.BindConfig(((BaseUnityPlugin)this).Config); Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly(), "redseiko.valheim.unstrippable"); } public static void LogInfo(object obj) { _logger.LogInfo((object)$"[{DateTime.Now.ToString(DateTimeFormatInfo.InvariantInfo)}] {obj}"); } } }