Skip to content

Commit 0d71d67

Browse files
committed
Adapt to changes in NeoForge 20.4.25-beta
1 parent 3e3532b commit 0d71d67

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

gradle.properties

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@ minecraft_version=1.20.4
1313
# as they do not follow standard versioning conventions.
1414
minecraft_version_range=[1.20.2,1.21)
1515
# The Neo version must agree with the Minecraft version to get a valid artifact
16-
neo_version=20.4.20-beta
16+
neo_version=20.4.73-beta
1717
# The Neo version range can use any version of Neo as bounds or match the loader version range
18-
neo_version_range=[20.4,)
18+
neo_version_range=[20.4.25,)
1919
# The loader version range can only use the major version of Neo/FML as bounds
2020
loader_version_range=[1,)
2121

22+
# Parchment properties
23+
neogradle.subsystems.parchment.minecraftVersion=1.20.3
24+
neogradle.subsystems.parchment.mappingsVersion=2023.12.31
25+
2226
## Mod Properties
2327

2428
# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
@@ -29,7 +33,7 @@ mod_name=Modular Materials
2933
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
3034
mod_license=LGPL-3.0
3135
# The mod version. See https://semver.org/
32-
mod_version=0.14.2-beta
36+
mod_version=0.14.3-beta
3337
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
3438
# This should match the base package used for the mod sources.
3539
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

src/main/java/glowredman/modularmaterials/data/ResourceLoader.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ public void loadPacks(Consumer<Pack> pOnLoad) {
4040
false), // isBuiltin
4141
new Info( // info
4242
Component.empty(), // description
43-
26, // dataFormat
44-
22, // resourceFormat
4543
PackCompatibility.COMPATIBLE, // compatibility
4644
FeatureFlagSet.of(), // requestedFeatures
4745
Collections.emptyList(), // overlays
@@ -60,8 +58,6 @@ public void loadPacks(Consumer<Pack> pOnLoad) {
6058
false), // isBuiltin
6159
new Info( // info
6260
Component.empty(), // description
63-
26, // dataFormat
64-
22, // resourceFormat
6561
PackCompatibility.COMPATIBLE, // compatibility
6662
FeatureFlagSet.of(), // requestedFeatures
6763
Collections.emptyList(), // overlays

0 commit comments

Comments
 (0)