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 Easy Journal v1.0.0
Easy_Journal.dll
Decompiled 8 months agousing System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using BepInEx; using BepInEx.Logging; using HarmonyLib; using UnityEngine; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] [assembly: AssemblyCompany("Easy_Journal")] [assembly: AssemblyConfiguration("Release")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyInformationalVersion("1.0.0+12ca76d5e1c41353f3c93a3c64d8a552c7fecb56")] [assembly: AssemblyProduct("Easy_Journal")] [assembly: AssemblyTitle("Easy_Journal")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.0.0.0")] [module: UnverifiableCode] namespace EasyJournal; [BepInPlugin("x753.Easy_Journal", "Easy_Journal", "1.0.0")] public class EasyJournalMod : BaseUnityPlugin { [HarmonyPatch(typeof(EnemyJournalRecord), "get_KillsRequired")] private class EnemyJournalRecord_get_KillsRequired_Patch { [HarmonyPrefix] public static bool EnemyJournalRecord_get_KillsRequired_Prefix(ref int __result) { if (__result > 1) { __result = 1; } return false; } } private const string modGUID = "x753.Easy_Journal"; private const string modName = "Easy_Journal"; private const string modVersion = "1.0.0"; private readonly Harmony harmony = new Harmony("x753.Easy_Journal"); internal static ManualLogSource ModLogger; public static EasyJournalMod Instance; private void Awake() { if ((Object)(object)Instance == (Object)null) { Instance = this; } harmony.PatchAll(); ModLogger = Logger.CreateLogSource("Easy_Journal"); ModLogger.LogInfo((object)"Plugin Easy_Journal is loaded!"); InitializeConfigs(); } public void InitializeConfigs() { } }