From 247de1880834e697fa4eb22d1ab9d898929b67c2 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 5 Apr 2025 23:15:42 -0400 Subject: [PATCH] Removed some deprecated fields --- core/src/mindustry/type/Item.java | 4 ---- core/src/mindustry/type/Planet.java | 4 ---- 2 files changed, 8 deletions(-) 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);