Links
Tags
Creators
Details
v1.2.0
Compatibility
Required content
Changes
Updates Sign Command for Minecraft 26.3.
26.3 reworks how a sign hands out its text. A sign no longer has a getFrontText() — both sides go through the new SignTextSlot enum, and SignText returns the whole line list rather than one line at a time. The mod reads the front side exactly as before.
SignBlockEntity.getFrontText()→getText(SignTextSlot.FRONT), same for hanging signsSignText.getMessage(i, false)→SignText.getMessages(false).get(i)- Minecraft 26.1.2 → 26.3, Fabric Loader 0.19.5, Fabric API 0.160.7+26.3
- Fabric Loom 1.18-SNAPSHOT, which needs Gradle 9.7 or newer — wrapper bumped to 9.7.1
No behaviour changes: normal signs still read lines 3 and 4, hanging signs lines 2 and 3, and the text still has to start with a slash.
Requirements
- Minecraft 26.3
- Java 25+
- Fabric Loader 0.19.5+ and Fabric API
Full Changelog: https://github.com/paraf0x/mc_sign_command/compare/v1.1.1...v1.2.0
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:7dNDUxyt:yDdz98OQ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:7dNDUxyt:yDdz98OQ"
}

