aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/compat
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-08-12 22:48:07 +0200
committerLinnea Gräf <nea@nea.moe>2024-08-12 22:48:07 +0200
commit0decd04bc348f957ef94a9a4beba5e3f829da718 (patch)
treeb2fc85671d3748e5a15a64c4f42437307a960c76 /src/main/kotlin/moe/nea/firmament/compat
parentb8a45b9a0438a12ba3c609f6e416d519829471be (diff)
downloadfirmament-0decd04bc348f957ef94a9a4beba5e3f829da718.tar.gz
firmament-0decd04bc348f957ef94a9a4beba5e3f829da718.tar.bz2
firmament-0decd04bc348f957ef94a9a4beba5e3f829da718.zip
Fix sodium reloadin
[no changelog]
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/compat')
-rw-r--r--src/main/kotlin/moe/nea/firmament/compat/SodiumChunkReloader.kt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/compat/SodiumChunkReloader.kt b/src/main/kotlin/moe/nea/firmament/compat/SodiumChunkReloader.kt
new file mode 100644
index 0000000..4bb231a
--- /dev/null
+++ b/src/main/kotlin/moe/nea/firmament/compat/SodiumChunkReloader.kt
@@ -0,0 +1,12 @@
+package moe.nea.firmament.compat
+
+import me.jellysquid.mods.sodium.client.render.SodiumWorldRenderer
+import moe.nea.firmament.mixins.accessor.sodium.AccessorSodiumWorldRenderer
+
+class SodiumChunkReloader : Runnable {
+ override fun run() {
+ (SodiumWorldRenderer.instanceNullable() as AccessorSodiumWorldRenderer)
+ .renderSectionManager_firmament
+ .updateChunks(false)
+ }
+}