diff --git a/GlitchRestore.sln b/ExtraSaves.sln similarity index 100% rename from GlitchRestore.sln rename to ExtraSaves.sln diff --git a/Source/GlitchRestore.csproj b/Source/ExtraSaves.csproj similarity index 95% rename from Source/GlitchRestore.csproj rename to Source/ExtraSaves.csproj index acd7dfb..38c7afb 100644 --- a/Source/GlitchRestore.csproj +++ b/Source/ExtraSaves.csproj @@ -1,7 +1,7 @@  - GlitchRestore - Patch speedrun glitches from the speedrun branch back into the main branch game. + ExtraSaves + Adds extra save slots to the main menu. netstandard2.1 1.0.0 latest diff --git a/Source/Plugin.cs b/Source/Plugin.cs index 89cf587..7eeef18 100644 --- a/Source/Plugin.cs +++ b/Source/Plugin.cs @@ -4,7 +4,7 @@ using HarmonyLib; namespace GlitchRestore; -[BepInPlugin("com.kobold60.glitchrestore", "Glitch Restore", "0.1.0")] +[BepInPlugin("com.kobold60.extrasaves", "Extra Saves", "0.1.0")] public class Plugin : BaseUnityPlugin { private Harmony harmony = null!; @@ -21,16 +21,6 @@ public class Plugin : BaseUnityPlugin { } } - [HarmonyPatch(typeof(Player), "OnTakeInvincibleHit")] - internal static class DamageRespawnRestore { - private static bool Prefix(DamageDealer damageDealer, Player __instance) { - if (__instance.IsCurrentState(PlayerStateType.Roll) && !damageDealer.parriable) { - DamageType type = damageDealer.type; - } - return false; - } - } - private void Awake() { Log.Init(Logger); RCGLifeCycle.DontDestroyForever(gameObject); @@ -38,7 +28,7 @@ public class Plugin : BaseUnityPlugin { // Load patches from any class annotated with @HarmonyPatch harmony = Harmony.CreateAndPatchAll(typeof(Plugin).Assembly); - Logger.LogInfo($"Plugin com.kobold60.glitchrestore is loaded!"); + Logger.LogInfo($"Plugin com.kobold60.extrasaves is loaded!"); } diff --git a/thunderstore/README.md b/thunderstore/README.md index 986f3c5..adc11e6 100644 --- a/thunderstore/README.md +++ b/thunderstore/README.md @@ -1,3 +1,3 @@ -# Glitch Restore +# Extra Saves -Re-implements rope storage and hazard respawn glitches from the speedrun patch. Piss skip currently doesn't work, but early city access does. \ No newline at end of file +Adds extra save slots to the main menu. Probably not compatible with Nine Saves. \ No newline at end of file diff --git a/thunderstore/icon.png b/thunderstore/icon.png index d8842b3..79e82f3 100644 Binary files a/thunderstore/icon.png and b/thunderstore/icon.png differ diff --git a/thunderstore/thunderstore.toml b/thunderstore/thunderstore.toml index 20daccc..fbaf0a5 100644 --- a/thunderstore/thunderstore.toml +++ b/thunderstore/thunderstore.toml @@ -2,11 +2,11 @@ schemaVersion = "0.1.0" [package] -namespace = "glitchrestore" -name = "GlitchRestore" +namespace = "extrasaves" +name = "ExtraSaves" versionNumber = "0.1.0" -description = "Bring back speedrun tricks" -websiteUrl = "https://git.yinglet.com/zhetadelta/ninesols-glitch-restore" +description = "Adds extra save slots" +websiteUrl = "https://git.yinglet.com/zhetadelta/ninesols-extra-saves" containsNsfwContent = false [package.dependencies]