Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to minecraft 1.21.3 (#355) #360

Merged
merged 2 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class MinecraftServerMixin {
* Intercept the call to saveAll that triggers on autosave, pass it through and then send out notification that
* the autosave is done.
*/
@Redirect(method = "tickServer(Ljava/util/function/BooleanSupplier;)V",
@Redirect(method = "autoSave()V",
at = @At(value = "INVOKE", target = "Lnet/minecraft/server/MinecraftServer;saveEverything(ZZZ)Z"))
public boolean fastback_saveAll(MinecraftServer instance, boolean suppressLogs, boolean flush, boolean force) {
boolean result = instance.saveEverything(suppressLogs, flush, force);
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Fastback
#
mod_version = 0.20.1+1.21.1-prerelease
mod_version = 0.21.0+1.21.3-prerelease
maven_group = net.pcal
maven_name = fastback
archives_base_name = fastback
Expand All @@ -10,9 +10,9 @@ archives_base_name = fastback
#
# Fabric & Minecraft - https://fabricmc.net/develop
#
minecraft_version=1.21.1
minecraft_version=1.21.3
loader_version=0.16.10
fabric_version=0.114.0+1.21.1
fabric_version=0.114.0+1.21.3

#
# Forge
Expand Down Expand Up @@ -54,7 +54,7 @@ fabric_permissions_version = 0.3.1

# https://github.com/NucleoidMC/Server-Translations/releases
# https://maven.nucleoid.xyz/xyz/nucleoid/server-translations-api/
server_translations_version = 2.3.1+1.21-pre2
server_translations_version = 2.4.0+1.21.2-rc1



Expand Down
Loading