quantum-space-buddies/QSB/TimeSync/Patches/TimePatches.cs

16 lines
357 B
C#
Raw Normal View History

2021-06-12 14:58:34 +00:00
using QSB.Patches;
namespace QSB.TimeSync.Patches
{
class TimePatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
public override void DoPatches()
2021-06-18 20:54:32 +00:00
=> Prefix(nameof(PlayerCameraEffectController_OnStartOfTimeLoop));
2021-06-12 14:58:34 +00:00
public static bool PlayerCameraEffectController_OnStartOfTimeLoop()
=> false;
}
}