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);