All versions
2.0.0
Release
1.10.2-2.0.03 years ago 144
Compatibility
Minecraft: Java Edition
1.10.2
Platform
Forge
Supported environments
Client and server
Changes
Released on March 31, 2017.
- Port to 1.10.2. This was actually a complete rewrite, and there is significantly less code total in the mod. Around 20 classes were removed for more generic versions (i.e., there used to be a class for every type like Brick, Stone, Cobblestone, etc. as well as a class for every ItemBlock of every type; now, there are 3 classes for "generic", "generic pillar" and glass, and only 1 generic ItemBlock class).
- FIX: Include an mcmod.info file.
- TWEAK/FIX: Logs and Quartz Pillars no longer store their family type in the metadata. There is a separate block for each family applied to Logs and Quartz Pillars. This is kind of gross, but is necessary for them to store their axis (the way they face) and for the possibility of adding more families in the future.
- TWEAK: Reorganize the textures folder.
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:VNFGMmyV:hNmBjG2I"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:VNFGMmyV:hNmBjG2I"
}

