Skip to content

Commit 5aebe34

Browse files
committed
Version 1.4.2: update to atum 2.2
1 parent aaea930 commit 5aebe34

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ dependencies {
3030
mappings variantOf(libs.yarn.mappings) { classifier "v2" }
3131
modImplementation libs.fabric.loader
3232
vineflowerDecompilerClasspath libs.vineflower
33-
modImplementation libs.atum
33+
34+
// check for the latest versions at https://jitpack.io/#kingcontaria/atum-rewrite
35+
modImplementation ("com.github.KingContaria:atum-rewrite:c6eb3d183b") {
36+
transitive = false
37+
}
3438

3539
// we need this for Atum
3640
// check for the latest versions at https://jitpack.io/#kingcontaria/speedrunapi

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2G
22
org.gradle.parallel = true
33
org.gradle.caching = true
44

5-
mod_version = 1.4.1
5+
mod_version = 1.4.2
66
target_version = 1.16.1
77
archives_name = chunkcacher
88
maven_group = me.char321

src/main/java/me/char321/chunkcacher/WorldCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void addChunk(ChunkPos chunkPos, Chunk chunk, ServerWorld world) {
2323
}
2424

2525
public static boolean shouldCache() {
26-
return Atum.isRunning() && Atum.config.isSetSeed();
26+
return Atum.isRunning() && Atum.isSetSeed();
2727
}
2828

2929
public static CompoundTag getChunkNbt(ChunkPos chunkPos, ServerWorld world) {

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"depends": {
1515
"fabricloader": ">=0.12.2",
1616
"minecraft": "1.16.1",
17-
"atum": ">=2.0.0"
17+
"atum": ">=2.2"
1818
},
1919
"breaks": {
2020
"lazystronghold": "*",

0 commit comments

Comments
 (0)