This commit is contained in:
Anuken
2020-07-23 10:27:24 -04:00
parent dc30ac4069
commit c93431ecc6
3 changed files with 32 additions and 1 deletions

View File

@@ -7,6 +7,21 @@ import mindustry.ui.dialogs.JoinDialog.*;
import java.io.*;
public class LegacyIO{
/** Maps old unit names to new ones. */
public static final StringMap unitMap = StringMap.of(
"titan", "mace",
"chaos-array", "vestige",
"eradicator", "cataclyst",
"eruptor", "atrax",
"wraith", "flare",
"ghoul", "horizon",
"revenant", "zenith",
"lich", "antumbra",
"reaper", "eclipse",
"draug", "mono",
"phantom", "poly",
"spirit", "poly"
);
public static Seq<Server> readServers(){
Seq<Server> arr = new Seq<>();