File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed
fabric/src/main/resources
src/main/resources/META-INF Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 22 "schemaVersion" : 1 ,
33 "id" : " ${modId}" ,
44 "version" : " ${modVersion}" ,
5- "name" : " Lambda " ,
5+ "name" : " ${modName} " ,
66 "description" : " ${modDescription}" ,
77 "authors" : [
8- " Constructor "
8+ " ${modAuthors} "
99 ],
1010 "contact" : {
1111 "homepage" : " " ,
1212 "sources" : " "
1313 },
1414 "license" : " GNU General Public License v3.0" ,
15- "icon" : " assets/lambda/lambda.png " ,
15+ "icon" : " ${modIcon} " ,
1616 "environment" : " *" ,
1717 "entrypoints" : {
1818 "client" : [
2323 ]
2424 },
2525 "mixins" : [
26- " lambda .mixins.common.json"
26+ " ${modId} .mixins.common.json"
2727 ],
2828 "depends" : {
2929 "fabricloader" : " >=${fabricLoaderVersion}" ,
Original file line number Diff line number Diff line change 1515 * along with this program. If not, see <http://www.gnu.org/licenses/>.
1616 */
1717
18+ val modId: String by project
1819val modVersion: String by project
1920val minecraftVersion: String by project
2021val forgeVersion: String by project
4748 // different mod loaders, you can add them using the
4849 // `extraAccessWideners` property.
4950 // And then add them to the `mixinConfig` function.
50- mixinConfig(" lambda .mixins.common.json" )
51+ mixinConfig(" $modId .mixins.common.json" )
5152 }
5253}
5354
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ issueTrackerURL = "https://github.com/lambda-client/lambda/issues"
66[[mods ]]
77modId = " ${modId}"
88version = " ${modVersion}"
9- displayName = " Lambda "
9+ displayName = " ${modName} "
1010authors = " ${modAuthors}"
1111description = " ${modDescription}"
12- logoFile = " assets/lambda/lambda.png "
12+ logoFile = " ${modIcon} "
1313displayTest = " IGNORE_ALL_VERSION"
1414
1515[[dependencies .${modId} ]]
Original file line number Diff line number Diff line change 1717
1818# Lambda https://github.com/lambda-client/lambda
1919modId =lambda
20+ modName =Lambda
2021modVersion =1.0.0
2122modDescription =Minecraft utility mod coded in Kotlin
23+ modIcon =assets/lambda/lambda.png
2224mavenGroup =com.lambda
2325modAuthors =Constructor, Blade, Edouard127
2426
You can’t perform that action at this time.
0 commit comments