Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

Commit

Permalink
Minor Bug Fix - Fixing Causing WorldVolume Toggling to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArion authored May 15, 2021
1 parent 1dcbd26 commit 4dbab59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WorldVolumes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal static void ToggleWorldVolumes()
{
try
{
if (OriginalVolumes == null || Core.IsInWorld) return;
if (OriginalVolumes == null || !Core.IsInWorld) return;
if (!WorldPostProcessing)
{
foreach (var originalVolume in OriginalVolumes.Where(originalVolume => originalVolume.postProcessVolume))
Expand Down Expand Up @@ -71,4 +71,4 @@ internal static void ToggleWorldVolumes()
}
}
}
}
}

0 comments on commit 4dbab59

Please sign in to comment.