aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRayDeeUx <raydeeux@gmail.com>2022-06-27 15:14:30 -0400
committerRayDeeUx <raydeeux@gmail.com>2022-06-27 15:14:30 -0400
commita2b0a2254afa0ed2e759028d69bb0029cb8c5e09 (patch)
tree63a05133753ea27a1397523972f04e0ca7fe2563
parentd4ad1e310d0a33d8caf86effe44d08babff8cdf1 (diff)
downloadSkyblockHud-Death-Defied-a2b0a2254afa0ed2e759028d69bb0029cb8c5e09.tar.gz
SkyblockHud-Death-Defied-a2b0a2254afa0ed2e759028d69bb0029cb8c5e09.tar.bz2
SkyblockHud-Death-Defied-a2b0a2254afa0ed2e759028d69bb0029cb8c5e09.zip
add crimson isle map
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java2
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java2
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java2
-rw-r--r--src/main/resources/assets/skyblockhud/maps/crimson.pngbin0 -> 362071 bytes
4 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
index 8793fb8..37bb688 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
@@ -316,7 +316,7 @@ public class SBHConfig extends Config {
@Expose
@ConfigOption(name = "Map Locations", desc = "Remove a location from this list if you would like the map to not show up in that location. This is so you can use other mods maps.")
- @ConfigEditorDraggableList(exampleText = { "HUB", "BARN", "MUSHROOMDESERT", "GOLDMINE (No Map Yet)", "DEEPCAVERNS (No Map Yet)", "SPIDERSDEN", "PARK", "FORTRESS", "DUNGEONHUB (No Map Yet)", "JERRY (No Map Yet)", "THEEND (No Map Yet)", "DWARVENMINES", "CRYSTALHOLLOWS" })
+ @ConfigEditorDraggableList(exampleText = { "HUB", "BARN", "MUSHROOMDESERT", "GOLDMINE (No Map Yet)", "DEEPCAVERNS (No Map Yet)", "SPIDERSDEN", "PARK", "CRIMSON", "DUNGEONHUB (No Map Yet)", "JERRY (No Map Yet)", "THEEND (No Map Yet)", "DWARVENMINES", "CRYSTALHOLLOWS" })
public List<Integer> mapLocations = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 6, 7, 11));
@Expose
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java b/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java
index 937a5a4..b05ebf8 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java
@@ -66,7 +66,7 @@ public class MapHandler {
HUB(0.5f, 494, 444, 294, 218, 294, 224, new ResourceLocation("skyblockhud", "maps/hub.png"), HubIcons.hubIcons),
MUSHROOM(1.0f, 318, 316, -84, 605, -84, 612, new ResourceLocation("skyblockhud", "maps/mushroom.png"), Collections.emptyList()),
SPIDERS(1.0f, 270, 238, 400, 362, 400, 364, new ResourceLocation("skyblockhud", "maps/spidersden.png"), Collections.emptyList()),
- NETHER(0.5f, 257, 371, 436, 732, 433, 736, new ResourceLocation("skyblockhud", "maps/fort.png"), Collections.emptyList()),
+ CRIMSON(1f, 790, 681, 436, 732, 433, 736, new ResourceLocation("skyblockhud", "maps/crimson.png"), Collections.emptyList()),
BARN(1.5f, 135, 130, -82, 320, -81, 318, new ResourceLocation("skyblockhud", "maps/barn.png"), Collections.emptyList()),
DWARVEN(0.5f, 409, 461, 206, 160, 202, 166, new ResourceLocation("skyblockhud", "maps/dwarven.png"), DwarvenIcons.dwarvenIcons),
CRYSTAL(0.5f, 624, 624, -202, -215.7, -202, -212, new ResourceLocation("skyblockhud", "maps/crystal.png"), Collections.emptyList()),
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java b/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java
index a51a1ac..61f253b 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java
@@ -15,7 +15,7 @@ public enum LocationCategory {
DEEPCAVERNS("deepcaverns", 91),
SPIDERSDEN("spiders_den", 99, Maps.SPIDERS),
PARK("park", 51, Maps.PARK),
- CRIMSON("crimson_isle", 107),
+ CRIMSON("crimson_isle", 107, Maps.CRIMSON),
DUNGEONHUB("dungeonhub", 115),
JERRY("jerry", 59),
THEEND("the_end", 123),
diff --git a/src/main/resources/assets/skyblockhud/maps/crimson.png b/src/main/resources/assets/skyblockhud/maps/crimson.png
new file mode 100644
index 0000000..2ce5744
--- /dev/null
+++ b/src/main/resources/assets/skyblockhud/maps/crimson.png
Binary files differ