diff options
author | olim <bobq4582@gmail.com> | 2024-01-31 15:23:53 +0000 |
---|---|---|
committer | olim <bobq4582@gmail.com> | 2024-01-31 15:23:53 +0000 |
commit | 7076875f3b9b513a569760f5890202e260fc6bd7 (patch) | |
tree | 14c93e874ec500d9896560391c64116002d17d2b /src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java | |
parent | 465c46d1f3dde2474fc1595033e2eab4e7286433 (diff) | |
download | Skyblocker-7076875f3b9b513a569760f5890202e260fc6bd7.tar.gz Skyblocker-7076875f3b9b513a569760f5890202e260fc6bd7.tar.bz2 Skyblocker-7076875f3b9b513a569760f5890202e260fc6bd7.zip |
comments and desriptions
add more comments to new code and added Tooltips to the new options in the config menu
Diffstat (limited to 'src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java')
-rw-r--r-- | src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java b/src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java index 181a8750..d7deed25 100644 --- a/src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java +++ b/src/main/java/de/hysky/skyblocker/skyblock/dwarven/CrystalsLocationsManager.java @@ -43,7 +43,9 @@ import static net.fabricmc.fabric.api.client.command.v2.ClientCommandManager.lit public class CrystalsLocationsManager { public static final MinecraftClient client = MinecraftClient.getInstance(); - + /** + * A look-up table to convert between location names and waypoint in the {@link CrystalsWaypoint.Category} values. + */ public static final Map<String, CrystalsWaypoint.Category> WAYPOINTLOCATIONS = Map.of( "Jungle Temple", CrystalsWaypoint.Category.JUNGLETEMPLE, "Mines Of Divan", CrystalsWaypoint.Category.MINESOFDIVAN, @@ -94,8 +96,6 @@ public class CrystalsLocationsManager { } client.player.sendMessage(getLocationInputText(location), false); } - - } private static Boolean checkInCrystals(BlockPos pos){ //checks if a location is inside crystal hollows bounds |