Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.14-SNAPSHOT'
id 'fabric-loom' version '1.16-SNAPSHOT'
id 'maven-publish'
}

Expand Down Expand Up @@ -93,12 +93,10 @@ dependencies {

modImplementation(fabricApi.module("fabric-resource-loader-v0", project.fabric_version))

modImplementation "net.caffeinemc:sodium-fabric:0.8.7+mc1.21.11"
modImplementation "net.caffeinemc:sodium-fabric-api:0.8.7+mc1.21.11"
modImplementation "net.caffeinemc:sodium-fabric:0.8.11+mc1.21.11"

//modImplementation "maven.modrinth:c2me-fabric:0.2.0+alpha.10.49+1.19.4"
//modImplementation "maven.modrinth:chunks-fade-in:v1.0.3-1.19.4"
//modImplementation "maven.modrinth:immersiveportals:v2.7.3-mc1.19.4"
modCompileOnly "maven.modrinth:iris:1.10.4+1.21.11-fabric"
}

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ parchmentmc_mappings=2025.12.20
fabric_version=0.140.2+1.21.11

# Mod Properties
mod_version=0.4.3-beta7-1.21.11
mod_version=0.4.3-beta8-1.21.11
maven_group=me.cortex
archives_base_name=nvidium
# Dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void renderLayer(ChunkRenderMatrices matrices, TerrainRenderPass pass, do
}

@Inject(method = "getDebugStrings", at = @At("HEAD"), cancellable = true)
private void redirectDebug(CallbackInfoReturnable<Collection<String>> cir) {
private void redirectDebug(boolean showAdvanced, CallbackInfoReturnable<Collection<String>> cir) {
if (Nvidium.IS_ENABLED) {
var debugStrings = new ArrayList<String>();
renderer.addDebugInfo(debugStrings);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"depends": {
"fabricloader": ">=0.17.2",
"minecraft": ["1.21.11"],
"sodium": ["=0.8.7"]
"sodium": ["=0.8.11"]
}
}