From d6a51b3832ec18c867dc6ca6ad1edc3e6d652ff4 Mon Sep 17 00:00:00 2001 From: Sakura Ryoko Date: Wed, 29 Jan 2025 10:41:47 -0500 Subject: [PATCH] bump yarn / malilib --- gradle.properties | 4 ++-- .../java/fi/dy/masa/litematica/mixin/MixinWorldRenderer.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 09da52fbf1..c30edd3cd7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,12 +12,12 @@ mod_file_name = litematica-fabric mod_version = 0.21.999-dev # Required malilib version -malilib_version = 2b431d54f4 +malilib_version = 7ea385d3c5 # Minecraft, Fabric Loader and API and mappings versions minecraft_version_out = 25w04a minecraft_version = 25w04a -mappings_version = 25w04a+build.7 +mappings_version = 25w04a+build.10 fabric_loader_version = 0.16.10 mod_menu_version = 13.0.1 diff --git a/src/main/java/fi/dy/masa/litematica/mixin/MixinWorldRenderer.java b/src/main/java/fi/dy/masa/litematica/mixin/MixinWorldRenderer.java index a980ee3919..f383c2ca96 100644 --- a/src/main/java/fi/dy/masa/litematica/mixin/MixinWorldRenderer.java +++ b/src/main/java/fi/dy/masa/litematica/mixin/MixinWorldRenderer.java @@ -106,7 +106,7 @@ private void onPostRenderEntities(MatrixStack matrices, VertexConsumerProvider.I if (this.posMatrix != null && this.ticks != null) { - LitematicaRenderer.getInstance().piecewiseRenderEntities(this.posMatrix, this.ticks.getTickDelta(false), this.profiler); + LitematicaRenderer.getInstance().piecewiseRenderEntities(this.posMatrix, this.ticks.getTickProgress(false), this.profiler); this.posMatrix = null; this.ticks = null; this.profiler = null;