Skip to content

Commit

Permalink
Don't record during the exile cutscene
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexejhero committed Jun 8, 2023
1 parent 731d28e commit 6349203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neuro/Recording/Recorder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void Start()

private void FixedUpdate()
{
if (MeetingHud.Instance || Minigame.Instance || PlayerControl.LocalPlayer.Data.IsDead) return;
if (MeetingHud.Instance || Minigame.Instance || ExileController.Instance || PlayerControl.LocalPlayer.Data.IsDead) return;

if (CommunicationHandler.IsPresentAndConnected)
{
Expand Down

0 comments on commit 6349203

Please sign in to comment.