77modLoader =" javafml" # mandatory
88
99# A version range to match for said mod loader - for regular FML @Mod it will be the FML version. This is currently 2.
10- loaderVersion =" ${loader_version_range} " # mandatory
10+ loaderVersion =" [4,) " # mandatory
1111
1212# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
1313# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
14- license =" ${mod_license} "
14+ license =" MIT "
1515
1616# A URL to refer people to when problems occur with this mod
1717# issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
@@ -26,7 +26,7 @@ modId="extendedrecipe" #mandatory
2626version =" 1.0.0-alpha.2" # mandatory
2727
2828# A display name for the mod
29- displayName =" ${mod_name} " # mandatory
29+ displayName =" Extended Recipe " # mandatory
3030
3131# A URL to query for updates for this mod. See the JSON update specification https://docs.neoforged.net/docs/misc/updatechecker/
3232# updateJSONURL="https://change.me.example.invalid/updates.json" #optional
@@ -41,10 +41,10 @@ displayName="${mod_name}" #mandatory
4141# credits="" #optional
4242
4343# A text field displayed in the mod UI
44- authors =" ${mod_authors} " # optional
44+ authors =" Hamburger0abcde " # optional
4545
4646# The description text for the mod (multi line!) (#mandatory)
47- description =''' ${mod_description} '''
47+ description =''' Some New Recipes '''
4848
4949# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
5050# [[mixins]]
@@ -68,7 +68,7 @@ description='''${mod_description}'''
6868 # Optional field describing why the dependency is required or why it is incompatible
6969 # reason="..."
7070 # The version range of the dependency
71- versionRange =" ${neo_version_range} " # mandatory
71+ versionRange =" [21.1.0,) " # mandatory
7272 # An ordering relationship for the dependency.
7373 # BEFORE - This mod is loaded BEFORE the dependency
7474 # AFTER - This mod is loaded AFTER the dependency
@@ -81,7 +81,7 @@ description='''${mod_description}'''
8181 modId =" minecraft"
8282 type =" required"
8383 # This version range declares a minimum of the current minecraft version up to but not including the next major version
84- versionRange =" ${minecraft_version_range} "
84+ versionRange =" [1.21.1,) "
8585 ordering =" NONE"
8686 side =" BOTH"
8787
0 commit comments