Tags
Creators
Details
Licensed MIT
Published last year
Updated 6 hours ago
All versions
forge-1.20.1-3.0
Release
Tiny Multiblock Lib 3.08 months ago 188
Compatibility
Minecraft: Java Edition
1.20–1.20.4
1.19.4
Platforms
Forge
NeoForge
Supported environments
Client and server
Changes
Unless I get more ideas, this might be the final major version. I'll try to avoid breaking changes from now on
- makeFullShape now has Level and its BE in its parameter
- Added a BlockEntity that's registered automatically, removing the need for custom BEs when not necessary
- Added Multiblock Structures, which are multiblocks with blocks underneath
- Added some helper utils for multiblock structures
- Moved most classes into common, meaning both loaders now have the same example blocks
- Expanding multiblock now reacts to block updates
- Fixed movable multiblock for the most part
- Added a Simple multiblock, a minimal implementation for mod devs to reference
- Renamed synced blockstates to shared blockstates, to avoid confusion
- Fixed a bug where previews used the wrong rendertype
- Fixed multiblocks breaking at world limit
Supplementary resources
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:Ynklgl8X:cb2kheNB"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Ynklgl8X:cb2kheNB"
}

