Links
Tags
Creators
Details
0.4
Compatibility
Required content
Changes
Minecraft 26.1 removed code obfuscation, meaning the game's code is now readable without special mappings. To take full advantage of this, I've completely rewritten the mod from scratch. Supporting both old (obfuscated) and new (unobfuscated) versions would require maintaining two separate codebases, which isn't sustainable for me since I also have other projects and responsibilities to focus on. That means, all previous versions remain available for download and are still fully playable, they just won't receive any future updates.
TL;DR: v0.4 only works with Minecraft 26.1+. If you're on 1.21.x or older, stay on v0.3.
Added
- Toggle message configuration via
showToggleMessage- Configurable in
config/chrissi-nightvision.json(default: true)
- Configurable in
Changed
- Complete rewrite using Mojang's official mappings (no more Yarn)
- Fixed numerous code inconsistencies from previous versions
- Heavily focused on code quality, performance optimization, and future-proofing
- Cleaner, more maintainable codebase throughout
- Updated to Java 25
- Updated to Fabric Loader 0.18.4+
- Updated to Fabric API 0.144.0+26.1
Thanks for all the overwhelmingly positive feedback so far, it really means a lot.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:um3io6U4:qLKgiwH3"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:um3io6U4:qLKgiwH3"
}

