Skip to content

Commit

Permalink
Adapt to changes in NeoForge 20.4.25-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
glowredman committed Jan 2, 2024
1 parent 3e3532b commit 0d71d67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 7 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ minecraft_version=1.20.4
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.20.2,1.21)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=20.4.20-beta
neo_version=20.4.73-beta
# The Neo version range can use any version of Neo as bounds or match the loader version range
neo_version_range=[20.4,)
neo_version_range=[20.4.25,)
# The loader version range can only use the major version of Neo/FML as bounds
loader_version_range=[1,)

# Parchment properties
neogradle.subsystems.parchment.minecraftVersion=1.20.3
neogradle.subsystems.parchment.mappingsVersion=2023.12.31

## Mod Properties

# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
Expand All @@ -29,7 +33,7 @@ mod_name=Modular Materials
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=LGPL-3.0
# The mod version. See https://semver.org/
mod_version=0.14.2-beta
mod_version=0.14.3-beta
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ public void loadPacks(Consumer<Pack> pOnLoad) {
false), // isBuiltin
new Info( // info
Component.empty(), // description
26, // dataFormat
22, // resourceFormat
PackCompatibility.COMPATIBLE, // compatibility
FeatureFlagSet.of(), // requestedFeatures
Collections.emptyList(), // overlays
Expand All @@ -60,8 +58,6 @@ public void loadPacks(Consumer<Pack> pOnLoad) {
false), // isBuiltin
new Info( // info
Component.empty(), // description
26, // dataFormat
22, // resourceFormat
PackCompatibility.COMPATIBLE, // compatibility
FeatureFlagSet.of(), // requestedFeatures
Collections.emptyList(), // overlays
Expand Down

0 comments on commit 0d71d67

Please sign in to comment.