Add horse

This commit is contained in:
lukasabbe
2026-02-21 17:03:21 +01:00
parent 9a8147eab0
commit 5870414653
8 changed files with 222 additions and 10 deletions
+16
View File
@@ -1,6 +1,7 @@
plugins {
id 'fabric-loom' version '1.15-SNAPSHOT'
id 'maven-publish'
id "com.modrinth.minotaur" version "2.+"
}
version = project.mod_version
@@ -68,4 +69,19 @@ jar {
from("LICENSE") {
rename { "${it}_${project.archives_base_name}" }
}
}
modrinth {
token = System.getenv("MODRINTH_TOKEN")
projectId = "5iOVOX8K" //https://modrinth.com/mod/simple-transport-hud
version = project.version
versionType = project.versionType
uploadFile = jar
gameVersions = [project.minecraft_version]
loaders = ["fabric"]
dependencies {
required.project "fabric-api"
required.project "yacl"
required.project "modmenu"
}
}