quantum-space-buddies/QSB/TimeSync/Patches/TimePatches.cs
2021-06-19 11:26:05 +01:00

16 lines
355 B
C#

using QSB.Patches;
namespace QSB.TimeSync.Patches
{
class TimePatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
public override void DoPatches()
=> Prefix(nameof(PlayerCameraEffectController_OnStartOfTimeLoop));
public static bool PlayerCameraEffectController_OnStartOfTimeLoop()
=> false;
}
}