Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
# Conflicts:
#	build.gradle
#	gradle.properties
  • Loading branch information
Ellpeck committed Sep 25, 2024
2 parents 81b9cfe + 34c9bb6 commit 0d638e9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/main/java/de/ellpeck/naturesaura/compat/Compat.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@

public final class Compat {

@SuppressWarnings("Convert2MethodRef") // bleh classloading compat issues
private static final Map<String, Supplier<ICompat>> MODULE_TYPES = ImmutableMap.<String, Supplier<ICompat>>builder()
.put("patchouli", PatchouliCompat::new)
.put("curios", CuriosCompat::new)
.put("patchouli", () -> new PatchouliCompat())
.put("curios", () -> new CuriosCompat())
//.put("enchantability", EnchantibilityCompat::new)
.build();
private static final Map<String, ICompat> MODULES = new HashMap<>();
Expand Down
7 changes: 7 additions & 0 deletions src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,10 @@ side = "BOTH"
# stop your mod loading on the server for example.
#[features.${mod_id}]
#openGLVersion="[3.2,)"

[[dependencies.${mod_id}]]
modId="patchouli"
type = "required"
versionRange="[${patchouli_version},)"
ordering="NONE"
side="BOTH"
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"tag": "forge:nuggets/gold"
},
"G": {
"item": "minecraft:grass_block"
"item": "minecraft:short_grass"
},
"L": {
"tag": "minecraft:leaves"
Expand Down
2 changes: 1 addition & 1 deletion supporters.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
},
"Ixiptla": {
"tier": 2,
"color": "5500ff"
"color": "93E9BE"
}
}

0 comments on commit 0d638e9

Please sign in to comment.