diff --git a/QSB/EyeOfTheUniverse/CosmicInflation/Patches/InflationPatches.cs b/QSB/EyeOfTheUniverse/CosmicInflation/Patches/InflationPatches.cs new file mode 100644 index 00000000..9b16ca16 --- /dev/null +++ b/QSB/EyeOfTheUniverse/CosmicInflation/Patches/InflationPatches.cs @@ -0,0 +1,24 @@ +using HarmonyLib; +using QSB.Patches; +using QSB.Utility; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace QSB.EyeOfTheUniverse.CosmicInflation.Patches +{ + internal class InflationPatches : QSBPatch + { + public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect; + + [HarmonyPrefix] + [HarmonyPatch(typeof(CosmicInflationController), nameof(CosmicInflationController.StartCollapse))] + public static bool StartCollapse(CosmicInflationController __instance) + { + DebugLog.DebugWrite($"Start Collapse"); + return true; + } + } +} diff --git a/QSB/manifest.json b/QSB/manifest.json index fcd76a32..b1d99183 100644 --- a/QSB/manifest.json +++ b/QSB/manifest.json @@ -7,7 +7,7 @@ "body": "- Disable *all* other mods. (Can heavily affect performance)\n- Make sure you are not running any other network-intensive applications.\n- Make sure you have forwarded/opened the correct ports. (See the GitHub readme.)" }, "uniqueName": "Raicuparta.QuantumSpaceBuddies", - "version": "0.14.0", + "version": "0.15.0", "owmlVersion": "2.2.0", "dependencies": [ "_nebula.MenuFramework" ] }