Skip to content

Commit

Permalink
Merge branch '1.20.4/pojavFixing' into merge-test
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikBR authored Mar 25, 2024
2 parents 435a6bd + fc36449 commit 203799d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ tasks.withType<JavaCompile> {
fun createVersionString(): String {
val builder = StringBuilder()

val isReleaseBuild = project.hasProperty("build.release")
val isReleaseBuild = true //project.hasProperty("build.release")
val buildId = System.getenv("GITHUB_RUN_NUMBER")

if (isReleaseBuild) {
Expand Down
23 changes: 11 additions & 12 deletions src/main/resources/sodium.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"conformVisibility": true
},
"client": [
"core.MinecraftMixin",
"core.WindowMixin",
"core.gui.LevelLoadStatusManagerMixin",
"core.model.colors.BlockColorsMixin",
Expand All @@ -26,15 +25,6 @@
"core.render.immediate.consumer.BufferSourceMixin",
"core.render.immediate.consumer.VertexMultiConsumerMixin$DoubleMixin",
"core.render.immediate.consumer.VertexMultiConsumerMixin$MultipleMixin",
"core.render.world.RenderBuffersMixin",
"core.render.world.LevelRendererMixin",
"core.world.biome.ClientLevelMixin",
"core.world.chunk.ZeroBitStorageMixin",
"core.world.chunk.SimpleBitStorageMixin",
"core.world.chunk.PalettedContainerMixin",
"core.world.map.ClientChunkCacheMixin",
"core.world.map.ClientPacketListenerMixin",
"core.world.map.ClientLevelMixin",
"features.gui.hooks.console.GameRendererMixin",
"features.gui.hooks.debug.DebugScreenOverlayMixin",
"features.gui.hooks.settings.OptionsScreenMixin",
Expand Down Expand Up @@ -84,8 +74,17 @@
"features.textures.mipmaps.MipmapGeneratorMixin",
"features.textures.mipmaps.SpriteContentsMixin",
"features.world.biome.BiomeMixin",
"features.world.storage.ClientChunkCacheMixin",
"workarounds.context_creation.WindowMixin",
"workarounds.event_loop.RenderSystemMixin"

"core.world.chunk.PackedIntegerArrayMixin",
"core.world.chunk.EmptyPaletteStorageMixin",
"core.world.chunk.PalettedContainerMixin",
"core.world.biome.ClientWorldMixin",

"features.render.world.sky.ClientWorldMixin",

"features.options.weather.WorldRendererMixin",
"features.render.world.clouds.WorldRendererMixin",
"features.render.world.sky.WorldRendererMixin"
]
}

0 comments on commit 203799d

Please sign in to comment.