blob: 932c338c21d05da6b05e982cc2df32ce899b88ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package moe.nea.firmament.compat.sodium
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
?.markGraphDirty()
}
}
|