diff options
author | RayDeeUx <raydeeux@gmail.com> | 2022-07-01 14:00:40 -0400 |
---|---|---|
committer | RayDeeUx <raydeeux@gmail.com> | 2022-07-01 14:00:40 -0400 |
commit | 50331cf594295fea769b49f5b8a5dc1acf0cd159 (patch) | |
tree | fab7e105fab6efd0d384bc2414b42a10062c8995 | |
parent | 8e1e3e8bbdaa42556321767e03cb29f3a45012c5 (diff) | |
download | SkyblockHud-Death-Defied-50331cf594295fea769b49f5b8a5dc1acf0cd159.tar.gz SkyblockHud-Death-Defied-50331cf594295fea769b49f5b8a5dc1acf0cd159.tar.bz2 SkyblockHud-Death-Defied-50331cf594295fea769b49f5b8a5dc1acf0cd159.zip |
SO CLOSE TO A JERRY MAP
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | 4 | ||||
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java | 3 | ||||
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java | 2 | ||||
-rw-r--r-- | src/main/resources/assets/skyblockhud/maps/jerry.png | bin | 0 -> 37149 bytes |
4 files changed, 5 insertions, 4 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java index 7348b57..c4f906a 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java @@ -316,8 +316,8 @@ 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", "CRIMSON", "DUNGEONHUB", "JERRY (No Map Yet)", "THEEND", "DWARVENMINES", "CRYSTALHOLLOWS" }) - public List<Integer> mapLocations = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 6, 7, 8, 10, 11)); + @ConfigEditorDraggableList(exampleText = { "HUB", "BARN", "MUSHROOMDESERT", "GOLDMINE", "DEEPCAVERNS (No Map Yet)", "SPIDERSDEN", "PARK", "CRIMSON", "DUNGEONHUB", "JERRY", "THEEND", "DWARVENMINES", "CRYSTALHOLLOWS" }) + public List<Integer> mapLocations = new ArrayList<>(Arrays.asList(0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11)); @Expose @ConfigOption(name = "Mini-Map Position", desc = "Allows you to change the position of the Mini-Map.") diff --git a/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java b/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java index 284f48b..6950600 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/handlers/MapHandler.java @@ -73,7 +73,8 @@ public class MapHandler { PARK(1f, 211, 230, 480, 133, 478, 134, new ResourceLocation("skyblockhud", "maps/park.png"), Collections.emptyList()), THEEND(1f, 338, 283, 787, 403, 788, 406, new ResourceLocation("skyblockhud", "maps/end.png"), Collections.emptyList()), DN(1f, 171, 219, 145, 87, 144, 90, new ResourceLocation("skyblockhud", "maps/dn.png"), Collections.emptyList()), - GOLDMINE(2f, 134, 134, 278, 278, 144, 90, new ResourceLocation("skyblockhud", "maps/gold.png"), Collections.emptyList()); + GOLDMINE(2f, 134, 134, 278, 278, 144, 90, new ResourceLocation("skyblockhud", "maps/gold.png"), Collections.emptyList()), + JERRY(1f, 215, 226, 88, 86, 88, 90, new ResourceLocation("skyblockhud", "maps/jerry.png"), Collections.emptyList()); public float scaleFactor; public int width; diff --git a/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java b/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java index c18af34..10a98b0 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/location/LocationCategory.java @@ -17,7 +17,7 @@ public enum LocationCategory { PARK("park", 51, Maps.PARK), CRIMSON("crimson_isle", 107, Maps.CRIMSON), DN("dungeonhub", 115, Maps.DN), - JERRY("jerry", 59), + JERRY("jerry", 59, Maps.JERRY), THEEND("the_end", 123, Maps.THEEND), DWARVENMINES("dwarven_mines", 131, Maps.DWARVEN), CRYSTALHOLLOWS("crystal_hollows", 139, Maps.CRYSTAL); diff --git a/src/main/resources/assets/skyblockhud/maps/jerry.png b/src/main/resources/assets/skyblockhud/maps/jerry.png Binary files differnew file mode 100644 index 0000000..9453ed5 --- /dev/null +++ b/src/main/resources/assets/skyblockhud/maps/jerry.png |