Skip to content

Commit 62d3c7b

Browse files
committed
update: fix sodium 2.4.1 compatibility
there isn't really a need to profile this anyway since seedqueue worldrenderers dont do any unloading
1 parent 1457e6e commit 62d3c7b

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
}
3737

3838
// check for the latest versions at https://jitpack.io/#Minecraft-Java-Edition-Speedrunning/sodium
39-
modCompileOnly "com.github.Minecraft-Java-Edition-Speedrunning:sodium:d488d3a782"
39+
modCompileOnly "com.github.Minecraft-Java-Edition-Speedrunning:sodium:0dd4b2d65a"
4040

4141
// check for the latest versions at https://jitpack.io/#contariaa/fastreset
4242
modCompileOnly ("com.github.contariaa:fastreset:3e395069aa") {

src/main/java/me/contaria/seedqueue/mixin/compat/sodium/profiling/ChunkRenderManagerMixin.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -241,19 +241,6 @@ private void profileReset2(CallbackInfo ci) {
241241
SeedQueueProfiler.push("reset");
242242
}
243243

244-
@Inject(
245-
method = "update",
246-
at = @At(
247-
value = "INVOKE",
248-
target = "Lme/jellysquid/mods/sodium/client/render/chunk/ChunkRenderManager;unloadPending()V",
249-
remap = false
250-
),
251-
remap = true
252-
)
253-
private void profileUnloadPending(CallbackInfo ci) {
254-
SeedQueueProfiler.swap("unload_pending");
255-
}
256-
257244
@Inject(
258245
method = "update",
259246
at = @At(

0 commit comments

Comments
 (0)