diff --git a/core/src/mindustry/type/Item.java b/core/src/mindustry/type/Item.java index 5d81790919..3ba4dc9de5 100644 --- a/core/src/mindustry/type/Item.java +++ b/core/src/mindustry/type/Item.java @@ -48,10 +48,6 @@ public class Item extends UnlockableContent implements Senseable{ public boolean buildable = true; public boolean hidden = false; - /** @deprecated no-op, do not use. */ - @Deprecated - public @Nullable Planet[] hiddenOnPlanets; - public Item(String name, Color color){ super(name); this.color = color; diff --git a/core/src/mindustry/type/Planet.java b/core/src/mindustry/type/Planet.java index 8bd06452ed..ae19a02995 100644 --- a/core/src/mindustry/type/Planet.java +++ b/core/src/mindustry/type/Planet.java @@ -166,10 +166,6 @@ public class Planet extends UnlockableContent{ /** Sets up rules on game load for any sector on this planet. */ public Cons ruleSetter = r -> {}; - /** @deprecated no-op, do not use. */ - @Deprecated - public Seq itemWhitelist = new Seq<>(), hiddenItems = new Seq<>(); - public Planet(String name, Planet parent, float radius){ super(name);