Remove unused volume

This commit is contained in:
Nick 2024-03-12 13:26:22 -04:00
parent b5ec327c3b
commit 7bfe3d2fd1
2 changed files with 2 additions and 9 deletions

View File

@ -1,8 +0,0 @@
namespace NewHorizons.Components.Volumes
{
public class NHInnerFogWarpVolume : InnerFogWarpVolume
{
public override bool IsProbeOnly() => _exitRadius <= 6;
public override float GetFogThickness() => _exitRadius;
}
}

View File

@ -17,7 +17,8 @@ namespace NewHorizons.Patches.VolumePatches
return true;
}
__result = Mathf.Approximately(__instance._exitRadius / __instance._warpRadius, 2f); // Check the ratio between these to determine if seed, instead of just < 10
// Check the ratio between these to determine if seed, instead of just < 10
__result = Mathf.Approximately(__instance._exitRadius / __instance._warpRadius, 2f);
return false;
}