quantum-space-buddies/QSB/TimeSync/Patches/TimePatches.cs
2021-06-18 21:54:32 +01:00

16 lines
357 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;
}
}