Fix sodium reloadin

[no changelog]
This commit is contained in:
Linnea Gräf
2024-08-12 22:48:07 +02:00
parent b8a45b9a04
commit 0decd04bc3
4 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package moe.nea.firmament.mixins.accessor.sodium;
import me.jellysquid.mods.sodium.client.render.SodiumWorldRenderer;
import me.jellysquid.mods.sodium.client.render.chunk.RenderSectionManager;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Pseudo;
import org.spongepowered.asm.mixin.gen.Accessor;
@Mixin(SodiumWorldRenderer.class)
@Pseudo
public interface AccessorSodiumWorldRenderer {
@Accessor("renderSectionManager")
RenderSectionManager getRenderSectionManager_firmament();
}