Minor repairing reworks for the anvil.
  • Java 97.4%
  • Kotlin 2.6%
Find a file
Chrys Chrysanthemum 529df548fe
Some checks failed
Build / build (push) Failing after 1m19s
chore: Further remove EMI integration.
2026-07-13 11:19:36 +10:00
.forgejo/workflows feat(build): Port over modern Greenhouse Gradle scripts. 2026-07-13 11:15:57 +10:00
build_logic chore: Greenhouse Team -> Greenhouse Modding. 2026-07-13 11:18:24 +10:00
fabric feat: Use Fabric Tag Removal API instead of mixin. 2026-07-13 11:16:09 +10:00
gradle feat(build): Port over modern Greenhouse Gradle scripts. 2026-07-13 11:15:57 +10:00
neoforge feat: Use Fabric Tag Removal API instead of mixin. 2026-07-13 11:16:09 +10:00
xplat chore: Further remove EMI integration. 2026-07-13 11:19:36 +10:00
.editorconfig Initial commit 2025-11-12 16:49:18 +00:00
.gitattributes Initial commit 2025-11-12 16:49:18 +00:00
.gitignore Initial commit 2025-11-12 16:49:18 +00:00
build.gradle.kts feat(build): Port over modern Greenhouse Gradle scripts. 2026-07-13 11:15:57 +10:00
CHANGELOG.md chore: 26.1.1 port. 2026-04-09 13:22:01 +10:00
gradle.properties feat: Port rewritten mod back to 1.21.10. 2025-11-17 13:37:32 +11:00
gradlew Initial commit 2025-11-12 16:49:18 +00:00
gradlew.bat Initial commit 2025-11-12 16:49:18 +00:00
LICENSE feat: Finish the mod. 2025-11-13 21:57:43 +11:00
README.md chore: Fix information within README.md. 2025-11-18 15:47:57 +11:00
settings.gradle.kts feat(build): Port over modern Greenhouse Gradle scripts. 2026-07-13 11:15:57 +10:00

Menderman

Available for FabricAvailable for NeoForge

Originally designed for Enchiridion, Menderman is a mod reworking the Anvil's repair systems, focusing on the cost and return of using an Anvil.

The mod can be downloaded from either CurseForge or Modrinth.

Maven

Menderman can be depended on from the Greenhouse Maven.

repositories {
    maven {
        name = "Greenhouse Maven"
        url = "https://maven.greenhouse.lgbt/releases/"
    }
}

dependencies {
    // Depend on the Crossplatform project, for ModDevGradle/VanillaGradle/other Mojmap based platforms.
    compileOnly("lgbt.greenhouse.menderman:menderman-xplat:${menderman_version}")

    // Depend on the Fabric project, for Loom.
    modImplementation("lgbt.greenhouse.menderman:menderman-fabric:${menderman_version}")

    // Depend on the NeoForge project, for ModDevGradle.
    implementation("lgbt.greenhouse:menderman-neoforge:${menderman_version}")

    // Depend on the NeoForge project, for NeoGradle.
    implementation("lgbt.greenhouse.menderman:menderman-neoforge:[${menderman_version},)")
}