From d9b6ada0b353ae997a316419a674eb2825889a3b Mon Sep 17 00:00:00 2001 From: NiChrosia Date: Thu, 15 Apr 2021 16:00:35 -0500 Subject: [PATCH] Replace 'sattelite' with 'satellite' (#5110) --- core/src/mindustry/type/Planet.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/type/Planet.java b/core/src/mindustry/type/Planet.java index f12cdb5c53..495ca4544b 100644 --- a/core/src/mindustry/type/Planet.java +++ b/core/src/mindustry/type/Planet.java @@ -31,7 +31,7 @@ public class Planet extends UnlockableContent{ public @Nullable PlanetGenerator generator; /** Array of sectors; directly maps to tiles in the grid. */ public Seq sectors; - /** Radius of this planet's sphere. Does not take into account sattelites. */ + /** Radius of this planet's sphere. Does not take into account satellites. */ public float radius; /** Atmosphere radius adjustment parameters. */ public float atmosphereRadIn = 0, atmosphereRadOut = 0.3f; @@ -67,7 +67,7 @@ public class Planet extends UnlockableContent{ public Planet solarSystem; /** All planets orbiting this one, in ascending order of radius. */ public Seq children = new Seq<>(); - /** Sattelites orbiting this planet. */ + /** Satellites orbiting this planet. */ public Seq satellites = new Seq<>(); /** Loads the mesh. Clientside only. Defaults to a boring sphere mesh. */ protected Prov meshLoader = () -> new ShaderSphereMesh(this, Shaders.unlit, 2);