Skip to content

Commit 0d638e9

Browse files
committed
Merge remote-tracking branch 'origin/main'
# Conflicts: # build.gradle # gradle.properties
2 parents 81b9cfe + 34c9bb6 commit 0d638e9

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

src/main/java/de/ellpeck/naturesaura/compat/Compat.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616

1717
public final class Compat {
1818

19+
@SuppressWarnings("Convert2MethodRef") // bleh classloading compat issues
1920
private static final Map<String, Supplier<ICompat>> MODULE_TYPES = ImmutableMap.<String, Supplier<ICompat>>builder()
20-
.put("patchouli", PatchouliCompat::new)
21-
.put("curios", CuriosCompat::new)
21+
.put("patchouli", () -> new PatchouliCompat())
22+
.put("curios", () -> new CuriosCompat())
2223
//.put("enchantability", EnchantibilityCompat::new)
2324
.build();
2425
private static final Map<String, ICompat> MODULES = new HashMap<>();

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,10 @@ side = "BOTH"
7272
# stop your mod loading on the server for example.
7373
#[features.${mod_id}]
7474
#openGLVersion="[3.2,)"
75+
76+
[[dependencies.${mod_id}]]
77+
modId="patchouli"
78+
type = "required"
79+
versionRange="[${patchouli_version},)"
80+
ordering="NONE"
81+
side="BOTH"

src/main/resources/data/naturesaura/recipes/gold_fiber.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"tag": "forge:nuggets/gold"
1111
},
1212
"G": {
13-
"item": "minecraft:grass_block"
13+
"item": "minecraft:short_grass"
1414
},
1515
"L": {
1616
"tag": "minecraft:leaves"

supporters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@
7979
},
8080
"Ixiptla": {
8181
"tier": 2,
82-
"color": "5500ff"
82+
"color": "93E9BE"
8383
}
8484
}

0 commit comments

Comments
 (0)