mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-07 13:05:41 +00:00
16 lines
355 B
C#
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;
|
|
}
|
|
}
|