Tags
Creators
Details
Licensed GPL-3.0-only
Created 4 years ago
Updated last month
All versions
2.4.1-mc26.1-rc-3
Release
2.4.1 (26.1-rc-3)4 months ago 58
Uploaded by
Compatibility
Minecraft: Java Edition
26.1-rc-3
Platforms
Fabric
Quilt
Supported environments
Client and server
Required content
Changes
ServerTextures now support.jpegfiles!- Files ending in
.mcphotowill also be treated as.jpegfiles. - All methods pertaining to finding files for
ServerTextures will no longer work if a file extension is included in thefileNameparameter.- Instead, an automatic search has been added which looks for matching file names, ending in the
.png,.jpeg, and.mcphotoextensions respectively. - When a match is found, it will be read.
- Instead, an automatic search has been added which looks for matching file names, ending in the
- Files ending in
FileTransferPackets now require a list of file extensions for requests.- This lets modders request files that could have a different file extension (e.g., photos ending in
.pngor.jpeg.) - Transfers are untouched, and still require the file extension to be part of the
fileNameparameter.- Please refrain from using the
fileExtensionsparameter when sending transfers, only use it for requests.
- Please refrain from using the
- This lets modders request files that could have a different file extension (e.g., photos ending in
- Updated the whitelisted file extensions for file requests and transfers.
.png,.jpeg,.mcphoto,.json.
- Fixed a bug that could occur when running a dedicated server from the same directory a client is running from, which is connected to the dedicated server.
ServerTextures would continuously request their texture file while the server would continuously send it, resulting in the file being constantly rewritten and never read as a texture.
- Added
BuiltInBlockModelRegistry, helping modders register their own built-in Block models.
Optional dependencies
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:9KawNmQc:NJG43gLD"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:9KawNmQc:NJG43gLD"
}


