Tags
Creators
Details
1.0
Compatibility
Changes
Copy Block States
Hold Left Ctrl + middle-click on a block in Creative mode to copy it with all its state properties (facing, waterlogged, axis, half, etc.).
Properties are displayed as colored lore on the copied item:
| Color | Meaning |
|---|---|
| Light gray | Property name |
| Aqua | true value |
| Light red | false value |
| Yellow | Non-boolean value |
Block ID Panel
When you open chat (T), a panel appears at the top-right corner with two tabs:
| Tab | Content |
|---|---|
| Hotbar | Icon + full item ID (e.g. minecraft:stone) in yellow text |
| Inventory | 4x9 grid showing every item in your inventory |
Click any item in the panel to insert its full namespaced ID into the chat input.
- F6 — Toggles panel visibility.
- The key is rebindable from Minecraft controls → Intelibuild category.
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:FvPcg05K:QgDx9LwN"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:FvPcg05K:QgDx9LwN"
}

