bump version

This commit is contained in:
Mister_Nebula 2021-12-30 23:34:02 +00:00
parent acd2ff486f
commit b93ece8bd8
2 changed files with 25 additions and 1 deletions

View File

@ -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;
}
}
}

View File

@ -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" ]
}