remove lighting synchronizer + version bump
This commit is contained in:
@@ -66,6 +66,7 @@ def gitCommitHash = { ->
|
||||
}
|
||||
|
||||
def buildtime = {System.currentTimeSeconds()}
|
||||
|
||||
processResources {
|
||||
def time = buildtime()
|
||||
def hash = gitCommitHash()
|
||||
|
||||
@@ -16,6 +16,6 @@ fabric_version=0.134.1+1.21.10
|
||||
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 0.2.6-alpha
|
||||
mod_version = 0.2.7-alpha
|
||||
maven_group = me.cortex
|
||||
archives_base_name = voxy
|
||||
@@ -0,0 +1,16 @@
|
||||
package me.cortex.voxy.client.mixin.minecraft;
|
||||
|
||||
import it.unimi.dsi.fastutil.longs.Long2ObjectMap;
|
||||
import net.minecraft.world.level.chunk.DataLayer;
|
||||
import net.minecraft.world.level.lighting.LayerLightSectionStorage;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||
|
||||
@Mixin(LayerLightSectionStorage.class)
|
||||
public class MixinLayerLightSectionStorage {
|
||||
@Redirect(method = "<init>", at = @At(value = "INVOKE", target = "Lit/unimi/dsi/fastutil/longs/Long2ObjectMaps;synchronize(Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;)Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;"), remap = false)
|
||||
private static Long2ObjectMap<DataLayer> voxy$removeSynchronized(Long2ObjectMap<DataLayer> map) {
|
||||
return map;
|
||||
}
|
||||
}
|
||||
@@ -5,28 +5,28 @@
|
||||
"client": [
|
||||
"flashback.MixinFlashbackMeta",
|
||||
"flashback.MixinFlashbackRecorder",
|
||||
"iris.MixinLevelRenderer",
|
||||
"iris.MixinPackRenderTargetDirectives",
|
||||
"iris.CustomUniformsAccessor",
|
||||
"iris.IrisRenderingPipelineAccessor",
|
||||
"iris.MixinIris",
|
||||
"iris.MixinIrisRenderingPipeline",
|
||||
"iris.MixinIrisSamplers",
|
||||
"iris.MixinLevelRenderer",
|
||||
"iris.MixinMatrixUniforms",
|
||||
"iris.MixinPackRenderTargetDirectives",
|
||||
"iris.MixinProgramSet",
|
||||
"iris.MixinShaderPackSourceNames",
|
||||
"iris.MixinStandardMacros",
|
||||
"minecraft.MixinClientLevel",
|
||||
"minecraft.MixinBlockableEventLoop",
|
||||
"minecraft.MixinClientChunkCache",
|
||||
"minecraft.MixinClientCommonPacketListenerImpl",
|
||||
"minecraft.MixinClientLevel",
|
||||
"minecraft.MixinClientPacketListener",
|
||||
"minecraft.MixinFogRenderer",
|
||||
"minecraft.MixinGlDebug",
|
||||
"minecraft.MixinLevelRenderer",
|
||||
"minecraft.MixinMinecraft",
|
||||
"minecraft.MixinRenderSystem",
|
||||
"minecraft.MixinBlockableEventLoop",
|
||||
"minecraft.MixinWindow",
|
||||
"minecraft.MixinLevelRenderer",
|
||||
"nvidium.MixinRenderPipeline",
|
||||
"sodium.AccessorChunkTracker",
|
||||
"sodium.AccessorSodiumWorldRenderer",
|
||||
@@ -34,7 +34,8 @@
|
||||
"sodium.MixinDefaultChunkRenderer",
|
||||
"sodium.MixinRenderSectionManager",
|
||||
"sodium.MixinSodiumOptionsGUI",
|
||||
"sodium.MixinSodiumWorldRenderer"
|
||||
"sodium.MixinSodiumWorldRenderer",
|
||||
"minecraft.MixinLayerLightSectionStorage"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
|
||||
@@ -28,7 +28,10 @@
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"client.voxy.mixins.json",
|
||||
{
|
||||
"config": "client.voxy.mixins.json",
|
||||
"environment": "client"
|
||||
},
|
||||
"common.voxy.mixins.json"
|
||||
],
|
||||
"depends": {
|
||||
|
||||
Reference in New Issue
Block a user