Skip to content

Commit da86ec8

Browse files
Prepare for locraw removal from Skyblocker
1 parent 7f3df38 commit da86ec8

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Skyblock Mod 1.10.5 for 1.21
2+
3+
Prepare for removal of locraw from Skyblocker.
4+
5+
16
## Skyblock Mod 1.10.4 for 1.21
27

38
Support for 1.21.

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ org.gradle.jvmargs = -Xmx1G
88
loader_version = 0.15.11
99

1010
# Mod Properties
11-
mod_version = 1.10.4
11+
mod_version = 1.10.5
1212
maven_group = com.kevinthegreat.skyblockmod
1313
archives_base_name = skyblock-mod
1414

1515
# Dependencies
1616
fabric_version = 0.100.1+1.21
1717
modmenu_version = 11.0.0-beta.1
18-
skyblocker_version = v1.21.0+1.21
18+
skyblocker_version = v1.21.1+1.21
1919
jgit_version = 6.9.0.202403050737-r
2020
## Apache Commons Math (https://mvnrepository.com/artifact/org.apache.commons/commons-math3)
2121
commons_math_version = 3.6.1

src/main/java/com/kevinthegreat/skyblockmod/util/Info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private void updateFromScoreboard(MinecraftClient client) {
111111
private void updateLocRaw() {
112112
if (hypixel) {
113113
long currentTime = System.currentTimeMillis();
114-
if (!sentLocRaw && currentTime > clientWorldJoinTime + 1000 && currentTime > lastLocRaw + 15000 && !SKYBLOCKER_LOADED) {
114+
if (!sentLocRaw && currentTime > clientWorldJoinTime + 1000 && currentTime > lastLocRaw + 15000) {
115115
SkyblockMod.skyblockMod.message.sendMessageAfterCooldown("/locraw");
116116
sentLocRaw = true;
117117
lastLocRaw = currentTime;

src/main/resources/fabric.mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"depends": {
3535
"fabricloader": ">=0.15",
3636
"fabric": "*",
37-
"minecraft": ">=1.20.5",
37+
"minecraft": ">=1.21",
3838
"java": ">=21"
3939
}
4040
}

0 commit comments

Comments
 (0)