···1717 // Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
1818 // See https://docs.gradle.org/current/userguide/declaring_repositories.html
1919 // for more information about repositories.
2020- maven { url = "https://maven.terraformersmc.com/" }
2120// maven { url = "https://maven.gegy.dev" }
2121+ maven {
2222+ name = "TerraformersMC"
2323+ url = "https://maven.terraformersmc.com/"
2424+ }
2525+ maven {
2626+ name = "Ladysnake Libs"
2727+ url = 'https://maven.ladysnake.org/releases'
2828+ }
2229}
23302431loom {
···4855 // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
49565057 // modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
5858+5959+ modImplementation "dev.emi:trinkets:${project.trinkets_version}"
5160}
52615362processResources {