From 9d422b4b32451c0ef387098c9c4fcbfc1ff0d36a Mon Sep 17 00:00:00 2001 From: Scrim <105956702+scrim-dev@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:02:22 -0400 Subject: [PATCH] Update Loader.cs --- Catalyss.ML/Loader.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Catalyss.ML/Loader.cs b/Catalyss.ML/Loader.cs index 330a4b4..5b10ff1 100644 --- a/Catalyss.ML/Loader.cs +++ b/Catalyss.ML/Loader.cs @@ -1,12 +1,10 @@ using Catalyss.ML; using MelonLoader; using System; -using System.Collections.Generic; using System.Diagnostics; using System.IO; -using System.Linq; using System.Reflection; -using System.Text; + [assembly: MelonInfo(typeof(Loader), "Catalyss Loader", "1.0", "Scrimmane (Scrim)")] [assembly: MelonGame("KisSoft", "ATLYSS")] [assembly: MelonPriority(0)] @@ -27,6 +25,10 @@ public override void OnInitializeMelon() try { Directory.CreateDirectory(dllLoc); } catch { MelonLogger.Error("Failed to load directory."); } } + else + { + MelonLogger.Msg("Catalyss path found."); + } } public override void OnLateInitializeMelon() @@ -56,6 +58,7 @@ internal static void LoadDll(string dllPath) { MelonLogger.Msg($"Found and invoking entry point."); entryMethod.Invoke(null, null); + MelonLogger.Msg("Catalyss Loaded!"); } else {