Skip to content

Commit

Permalink
Fix stuff up + Nw Calc 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureAaron committed Aug 11, 2024
1 parent 1081f83 commit 61c1316
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ occlusionculling_version = 0.0.8-SNAPSHOT
## neu repoparser (https://repo.nea.moe/#/releases/moe/nea/neurepoparser/)
repoparser_version = 1.5.0
## Networth Calculator (https://github.com/AzureAaron/networth-calculator)
networth_calculator_version = 1.0.0-alpha.3
networth_calculator_version = 1.0.0

# Other Libraries
## JGit (https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit)
Expand Down
1 change: 1 addition & 0 deletions src/main/java/de/hysky/skyblocker/debug/Debug.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public static void init() {
ClientCommandRegistrationCallback.EVENT.register((dispatcher, registryAccess) -> dispatcher.register(literal(SkyblockerMod.NAMESPACE).then(literal("debug")
.then(dumpPlayersCommand())
.then(ItemUtils.dumpHeldItemCommand())
.then(ItemUtils.dumpHeldItemNetworthCalculationsCommand())
.then(toggleShowingInvisibleArmorStands())
.then(dumpArmorStandHeadTextures())
.then(toggleWebSocketDebug())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class NetworthDataSuppliers {
private static final Logger LOGGER = LogUtils.getLogger();
private static Object2ObjectMap<String, SkyblockItemData> itemData = Object2ObjectMaps.emptyMap();
private static Object2ObjectMap<String, SkyblockItemData> itemData = Object2ObjectMaps.emptyMap();

public static void updateSkyblockItemData(JsonArray items) {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ private static IntList getCakeBagCakeYears(NbtCompound customData, String itemId
} catch (Exception ignored) {}
}

return new IntArrayList();
return IntList.of();
}
}

0 comments on commit 61c1316

Please sign in to comment.