Skip to content

Commit cdabbc7

Browse files
committed
Update to 1.21.5
1 parent 09a9592 commit cdabbc7

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
restore-keys: |
1919
gradle-
2020
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Set up JDK
2323
uses: actions/setup-java@v1
2424
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
restore-keys: |
2121
gradle-
2222
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Set up JDK
2525
uses: actions/setup-java@v1
2626
with:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'fabric-loom' version '1.8.+'
2+
id 'fabric-loom' version '1.10.+'
33
id 'maven-publish'
44
}
55

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx2G
33

44
# Fabric Properties
55

6-
minecraft_version=1.21.4
7-
yarn_mappings=1.21.4+build.1
8-
loader_version=0.16.9
6+
minecraft_version=1.21.5
7+
yarn_mappings=1.21.5+build.1
8+
loader_version=0.16.13
99

1010
# Mod Properties
11-
mod_version=0.6.6
11+
mod_version=0.6.7
1212
maven_group=xyz.nucleoid
1313
archives_base_name=fantasy
1414

1515
# Dependencies
16-
fabric_version=0.110.2+1.21.4
16+
fabric_version=0.119.2+1.21.5

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/main/java/xyz/nucleoid/fantasy/Fantasy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ private RuntimeWorld addTemporaryWorld(Identifier key, RuntimeWorldConfig config
180180

181181
void enqueueWorldDeletion(ServerWorld world) {
182182
this.server.execute(() -> {
183-
world.getChunkManager().removePersistentTickets();
183+
world.getChunkManager().shutdown();
184184
world.savingDisabled = true;
185185
this.kickPlayers(world);
186186
this.deletionQueue.add(world);
@@ -190,7 +190,7 @@ void enqueueWorldDeletion(ServerWorld world) {
190190
void enqueueWorldUnloading(ServerWorld world) {
191191
this.server.execute(() -> {
192192
world.savingDisabled = false;
193-
world.getChunkManager().removePersistentTickets();
193+
world.getChunkManager().shutdown();
194194
world.getChunkManager().tick(() -> true, false);
195195
this.kickPlayers(world);
196196
this.unloadingQueue.add(world);

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"depends": {
2222
"fabricloader": ">=0.15.10",
23-
"minecraft": ">=1.21.2-",
23+
"minecraft": ">=1.21.5-",
2424
"fabric-api": "*",
2525
"java": ">=21"
2626
}

0 commit comments

Comments
 (0)