diff options
author | glowredman <35727266+glowredman@users.noreply.github.com> | 2024-07-17 05:55:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 10:55:53 +0700 |
commit | b95ed37e55d8fa580c9848cf17b3f8e14e8c0e3d (patch) | |
tree | 8e2f6075c61da1dd953a10360ca1026a3a14189e /src/main | |
parent | a47404887f259f2897abc3cb808b873569646891 (diff) | |
download | GT5-Unofficial-b95ed37e55d8fa580c9848cf17b3f8e14e8c0e3d.tar.gz GT5-Unofficial-b95ed37e55d8fa580c9848cf17b3f8e14e8c0e3d.tar.bz2 GT5-Unofficial-b95ed37e55d8fa580c9848cf17b3f8e14e8c0e3d.zip |
Remove Space from "Mehen Belt" (#40)
* Update deps
* Remove space in "Mehen Belt"
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/pers/gwyog/gtneioreplugin/util/DimensionHelper.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/pers/gwyog/gtneioreplugin/util/DimensionHelper.java b/src/main/java/pers/gwyog/gtneioreplugin/util/DimensionHelper.java index 78224dc5ae..b82cb63f58 100644 --- a/src/main/java/pers/gwyog/gtneioreplugin/util/DimensionHelper.java +++ b/src/main/java/pers/gwyog/gtneioreplugin/util/DimensionHelper.java @@ -33,7 +33,7 @@ public class DimensionHelper { "GalaxySpace_TcetiE", "GalaxySpace_VegaB", // T9 "GalacticraftAmunRa_Anubis", "GalacticraftAmunRa_Horus", "GalacticraftAmunRa_Maahes", - "GalacticraftAmunRa_Mehen Belt", "GalacticraftAmunRa_Neper", "GalacticraftAmunRa_Seth", + "GalacticraftAmunRa_MehenBelt", "GalacticraftAmunRa_Neper", "GalacticraftAmunRa_Seth", // T10 "Underdark", }; @@ -96,7 +96,7 @@ public class DimensionHelper { "An", // GalacticraftAmunRa_Anubis "Ho", // GalacticraftAmunRa_Horus "Mh", // GalacticraftAmunRa_Maahes - "MB", // GalacticraftAmunRa_Mehen Belt + "MB", // GalacticraftAmunRa_MehenBelt "Np", // GalacticraftAmunRa_Neper "Se", // GalacticraftAmunRa_Seth // T10 @@ -122,7 +122,7 @@ public class DimensionHelper { case "Proteus", "Triton" -> "T6: " + s; case "Haumea", "Kuiperbelt", "MakeMake", "Pluto" -> "T7: " + s; case "BarnardC", "BarnardE", "BarnardF", "CentauriA", "TcetiE", "VegaB" -> "T8: " + s; - case "Anubis", "Horus", "Maahes", "Mehen Belt", "Neper", "Seth" -> "T9: " + s; + case "Anubis", "Horus", "Maahes", "MehenBelt", "Neper", "Seth" -> "T9: " + s; case "Underdark" -> "T10: " + s; default -> s; }; |