aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/compat/SodiumChunkReloader.kt
blob: 4bb231a1bf0169747378c3ffcdf6ad74b38a987f (plain)
1
2
3
4
5
6
7
8
9
10
11
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)
    }
}