Skip to content

Commit

Permalink
Prepare for locraw removal from Skyblocker
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthegreat1 committed Jul 10, 2024
1 parent 7f3df38 commit da86ec8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Skyblock Mod 1.10.5 for 1.21

Prepare for removal of locraw from Skyblocker.


## Skyblock Mod 1.10.4 for 1.21

Support for 1.21.
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ org.gradle.jvmargs = -Xmx1G
loader_version = 0.15.11

# Mod Properties
mod_version = 1.10.4
mod_version = 1.10.5
maven_group = com.kevinthegreat.skyblockmod
archives_base_name = skyblock-mod

# Dependencies
fabric_version = 0.100.1+1.21
modmenu_version = 11.0.0-beta.1
skyblocker_version = v1.21.0+1.21
skyblocker_version = v1.21.1+1.21
jgit_version = 6.9.0.202403050737-r
## Apache Commons Math (https://mvnrepository.com/artifact/org.apache.commons/commons-math3)
commons_math_version = 3.6.1
2 changes: 1 addition & 1 deletion src/main/java/com/kevinthegreat/skyblockmod/util/Info.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private void updateFromScoreboard(MinecraftClient client) {
private void updateLocRaw() {
if (hypixel) {
long currentTime = System.currentTimeMillis();
if (!sentLocRaw && currentTime > clientWorldJoinTime + 1000 && currentTime > lastLocRaw + 15000 && !SKYBLOCKER_LOADED) {
if (!sentLocRaw && currentTime > clientWorldJoinTime + 1000 && currentTime > lastLocRaw + 15000) {
SkyblockMod.skyblockMod.message.sendMessageAfterCooldown("/locraw");
sentLocRaw = true;
lastLocRaw = currentTime;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"depends": {
"fabricloader": ">=0.15",
"fabric": "*",
"minecraft": ">=1.20.5",
"minecraft": ">=1.21",
"java": ">=21"
}
}

0 comments on commit da86ec8

Please sign in to comment.