Skip to content

How to Use

Apollo edited this page Sep 17, 2024 · 1 revision

Lithostitched can be utilized by both datapacks and mods for its data-driven capabilities.

Mod method

The first method to using Lithostitched is simply to add the mod to your mods folder. The only additional capability by importing the mod through Gradle is being able to add custom structure condition and worldgen modifier types.

Gradle method

The second method to using Lithostitched is to add the mod as a dependency in your project.

// Add the Modrinth maven to your build.gradle(.kts)'s `repositories` block
repositories {
    maven {
        url = "https://api.modrinth.com/maven"
    }
}


// Add the mod as a dependency in the `dependencies` block
dependencies {
    modImplementation("maven.modrinth:lithostitched:1.3.0")
}