Skip to content

Commit 55dbece

Browse files
Update MDK with new output from mod generator
1 parent 8343287 commit 55dbece

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ tasks.withType(ProcessResources).configureEach {
133133
mod_name : mod_name,
134134
mod_license : mod_license,
135135
mod_version : mod_version,
136-
mod_authors : mod_authors,
137-
mod_description : mod_description
138136
]
139137
inputs.properties replaceProperties
140138

gradle.properties

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,3 @@ mod_version=1.0.0
3737
# This should match the base package used for the mod sources.
3838
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
3939
mod_group_id=com.example.examplemod
40-
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
41-
mod_authors=YourNameHere, OtherNameHere
42-
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
43-
mod_description=Example mod description.\nNewline characters can be used and will be replaced properly.

src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,13 @@ displayName="${mod_name}" #mandatory
4141
# A text field displayed in the mod UI
4242
#credits="" #optional
4343

44-
# A text field displayed in the mod UI
45-
authors="${mod_authors}" #optional
44+
# The authors of the mod, displayed in the mod UI (optional)
45+
#authors=""
4646

4747
# The description text for the mod (multi line!) (#mandatory)
48-
description='''${mod_description}'''
48+
description='''
49+
Example mod description.
50+
'''
4951

5052
# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
5153
#[[mixins]]

0 commit comments

Comments
 (0)