diff --git a/NeoQOLPack/Mod.cs b/NeoQOLPack/Mod.cs index 88593b1..52a747d 100644 --- a/NeoQOLPack/Mod.cs +++ b/NeoQOLPack/Mod.cs @@ -15,7 +15,7 @@ public class Mod : IMod public Config Config; public ILogger Logger; - private static readonly string versionTag = "v1.0.1"; + private static readonly string versionTag = "v1.0.2"; private static readonly string repo = "neomoth/NeoQOLPack"; private bool injectUpdateNotice = false; @@ -30,7 +30,7 @@ public Mod(IModInterface modInterface) { modInterface.RegisterScriptMod(new InventoryPactcher(this)); modInterface.RegisterScriptMod(new ItemSelectPatcher(this)); modInterface.RegisterScriptMod(new PlayerPatcher(this)); - modInterface.RegisterScriptMod(new TitleScreenPatcher()); + // modInterface.RegisterScriptMod(new PlayerTitlePatcher()); modInterface.RegisterScriptMod(new ShopPatcher()); modInterface.RegisterScriptMod(new PlayerHudPatcher(this)); modInterface.RegisterScriptMod(new ShopButtonPatcher(this)); diff --git a/NeoQOLPack/Mods/TitleScreenPatcher.cs b/NeoQOLPack/Mods/PlayerTitlePatcher.cs similarity index 97% rename from NeoQOLPack/Mods/TitleScreenPatcher.cs rename to NeoQOLPack/Mods/PlayerTitlePatcher.cs index 57f8c9b..280daa5 100644 --- a/NeoQOLPack/Mods/TitleScreenPatcher.cs +++ b/NeoQOLPack/Mods/PlayerTitlePatcher.cs @@ -4,7 +4,7 @@ namespace NeoQOLPack.Mods; -public class TitleScreenPatcher : IScriptMod +public class PlayerTitlePatcher : IScriptMod { public bool ShouldRun(string path) => path == "res://Scenes/Entities/Player/player_label.gdc";