mirror of
https://github.com/allaryin/FairyFactions.git
synced 2026-09-08 18:35:12 -05:00
Updated metadata so the mod actually tries to load now.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,6 +8,7 @@
|
||||
/classes/
|
||||
/output/
|
||||
debug/
|
||||
run/
|
||||
|
||||
/javadocs/
|
||||
*-javadoc/
|
||||
|
||||
22
build.gradle
22
build.gradle
@@ -18,6 +18,27 @@ archivesBaseName = "fairyfactions"
|
||||
|
||||
minecraft {
|
||||
mappings channel: 'snapshot', version: '20200514-1.16'
|
||||
|
||||
runs {
|
||||
client {
|
||||
workingDirectory project.file('run')
|
||||
|
||||
mods {
|
||||
fairyfactions {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
server {
|
||||
workingDirectory project.file('run')
|
||||
|
||||
mods {
|
||||
fairyfactions {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
@@ -32,7 +53,6 @@ jar {
|
||||
attributes([
|
||||
"Specification-Title": "fairyfactions",
|
||||
"Specification-Vendor": "allaryin",
|
||||
"Specification-Version": "0.6.0",
|
||||
"Implementation-Title": project.name,
|
||||
"Implementation-Version": "${version}",
|
||||
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
|
||||
|
||||
30
src/main/resources/META-INF/mods.toml
Normal file
30
src/main/resources/META-INF/mods.toml
Normal file
@@ -0,0 +1,30 @@
|
||||
modLoader="javafml"
|
||||
loaderVersion="[33,)"
|
||||
license="Apache-2.0"
|
||||
issueTrackerURL="https://github.com/allaryin/FairyFactions/issues"
|
||||
showAsResourcePack=false
|
||||
|
||||
[[mods]]
|
||||
modId="fairyfactions"
|
||||
version="${file.jarVersion}"
|
||||
displayName="Fairy Factions"
|
||||
displayURL="https://www.curseforge.com/minecraft/mc-mods/fairy-factions"
|
||||
authors="allaryin"
|
||||
credits="KodaichiZero - original mod"
|
||||
description='''
|
||||
Taming tribal fairies for silliness, fun, and profit!
|
||||
'''
|
||||
|
||||
[[dependencies.fairyfactions]]
|
||||
modId="forge"
|
||||
mandatory=true
|
||||
versionRange="[33.0,)"
|
||||
ordering="AFTER"
|
||||
side="BOTH"
|
||||
|
||||
[[dependencies.fairyfactions]]
|
||||
modId="minecraft"
|
||||
mandatory=true
|
||||
versionRange="[1.16.2]"
|
||||
ordering="NONE"
|
||||
side="BOTH"
|
||||
@@ -1,16 +0,0 @@
|
||||
[
|
||||
{
|
||||
"modid": "FairyFactions",
|
||||
"name": "Fairy Factions",
|
||||
"description": "",
|
||||
"version": "${version}",
|
||||
"mcversion": "${mcversion}",
|
||||
"url": "",
|
||||
"updateUrl": "",
|
||||
"authorList": ["allaryin"],
|
||||
"credits": "KodaichiZero - original mod",
|
||||
"logoFile": "",
|
||||
"screenshots": [],
|
||||
"dependencies": []
|
||||
}
|
||||
]
|
||||
6
src/main/resources/pack.mcmeta
Normal file
6
src/main/resources/pack.mcmeta
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"description": "Fairy Factions resources",
|
||||
"pack_format": 6
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user