Skip to content

Commit f5a568d

Browse files
committed
Update neoforge.mods.toml
1 parent 5b911d8 commit f5a568d

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ minecraft_version=1.21.1
1616
# The Minecraft version range can use any release version of Minecraft as bounds.
1717
# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly
1818
# as they do not follow standard versioning conventions.
19-
minecraft_version_range=[1.21.1, 1.22)
19+
minecraft_version_range=[1.21.1,)
2020
# The Neo version must agree with the Minecraft version to get a valid artifact
2121
neo_version=21.1.176
2222
# The Neo version range can use any version of Neo as bounds

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
modLoader="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
2626
version="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

Comments
 (0)