This commit is contained in:
Noah Pilarski 2024-01-01 23:54:28 -05:00
parent 2dbcb37577
commit bcfe939d9d
4 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ namespace NewHorizons.Builder.Atmosphere
#region obsolete #region obsolete
// Never change method signatures, people directly reference the NH dll and it can break backwards compatability // Never change method signatures, people directly reference the NH dll and it can break backwards compatibility
// Dreamstalker needed this one // Dreamstalker needed this one
[Obsolete] [Obsolete]
public static void Make(GameObject planetGO, Sector sector, PlanetConfig config, float surfaceHeight) public static void Make(GameObject planetGO, Sector sector, PlanetConfig config, float surfaceHeight)

View File

@ -28,7 +28,7 @@ namespace NewHorizons.Builder.Props
} }
#region obsolete #region obsolete
// Never change method signatures, people directly reference the NH dll and it can break backwards compatability // Never change method signatures, people directly reference the NH dll and it can break backwards compatibility
// In particular, Outer Wives needs this method signature // In particular, Outer Wives needs this method signature
[Obsolete] [Obsolete]
public static GameObject Make(GameObject go, Sector sector, GameObject prefab, DetailInfo detail) public static GameObject Make(GameObject go, Sector sector, GameObject prefab, DetailInfo detail)

View File

@ -281,7 +281,7 @@ namespace NewHorizons.External.Configs
public void Migrate() public void Migrate()
{ {
// Backwards compatability // Backwards compatibility
// Should be the only place that obsolete things are referenced // Should be the only place that obsolete things are referenced
#pragma warning disable 612, 618 #pragma warning disable 612, 618
if (Base.waterSize != 0) if (Base.waterSize != 0)

View File

@ -309,7 +309,7 @@ namespace NewHorizons.External.Configs
public void Migrate() public void Migrate()
{ {
// Backwards compatability // Backwards compatibility
// Should be the only place that obsolete things are referenced // Should be the only place that obsolete things are referenced
#pragma warning disable 612, 618 #pragma warning disable 612, 618
if (!string.IsNullOrEmpty(travelAudioClip)) travelAudio = travelAudioClip; if (!string.IsNullOrEmpty(travelAudioClip)) travelAudio = travelAudioClip;