quantum-space-buddies/QSB/TimeSync/Patches/TimePatches.cs
2021-10-14 11:46:14 +01:00

20 lines
509 B
C#

using QSB.Patches;
namespace QSB.TimeSync.Patches
{
internal class TimePatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
public override void DoPatches()
{
Prefix(nameof(PlayerCameraEffectController_OnStartOfTimeLoop));
Empty("OWTime_Pause");
Empty("SubmitActionSkipToNextLoop_AdvanceToNextLoop"); // TODO : remove this, remove meditation button instead
}
public static bool PlayerCameraEffectController_OnStartOfTimeLoop()
=> false;
}
}