diff options
| author | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-09-20 01:23:40 -0400 |
|---|---|---|
| committer | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-09-20 01:23:40 -0400 |
| commit | c6522b8d8b3389c6ee60f6cf6fc83bffa3436618 (patch) | |
| tree | 013c9109acc0c8f5b4e66dcc2b6addc1a5af592a | |
| parent | 18792206e06d61d9f3f115e6a8e74b4e47e4e2ee (diff) | |
| download | Skyblocker-c6522b8d8b3389c6ee60f6cf6fc83bffa3436618.tar.gz Skyblocker-c6522b8d8b3389c6ee60f6cf6fc83bffa3436618.tar.bz2 Skyblocker-c6522b8d8b3389c6ee60f6cf6fc83bffa3436618.zip | |
Update ItemUtils & Networth Calculator for Mining Changes
| -rw-r--r-- | gradle.properties | 2 | ||||
| -rw-r--r-- | src/main/java/de/hysky/skyblocker/utils/ItemUtils.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gradle.properties b/gradle.properties index fc2fea77..fb662b67 100644 --- a/gradle.properties +++ b/gradle.properties @@ -33,7 +33,7 @@ occlusionculling_version = 0.0.8-SNAPSHOT ## neu repoparser (https://repo.nea.moe/#/releases/moe/nea/neurepoparser/) repoparser_version = 1.6.0 ## Networth Calculator (https://github.com/AzureAaron/networth-calculator) -networth_calculator_version = 1.0.3 +networth_calculator_version = 1.0.4 ## Legacy Item DFU (https://github.com/AzureAaron/legacy-item-dfu) legacy_item_dfu_version = 1.0.1+1.21.1 diff --git a/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java b/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java index e6fa3d98..94dc75aa 100644 --- a/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java +++ b/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java @@ -338,7 +338,7 @@ public final class ItemUtils { if (stack.getSkyblockId().equals("PICKONIMBUS")) { int pickonimbusDurability = customData.getInt("pickonimbus_durability"); - return IntIntPair.of(customData.contains("pickonimbus_durability") ? pickonimbusDurability : 5000, 5000); + return IntIntPair.of(customData.contains("pickonimbus_durability") ? pickonimbusDurability : 2000, 2000); } String drillFuel = Formatting.strip(getLoreLineIf(stack, FUEL_PREDICATE)); |
