diff --git a/README.md b/README.md index eb4d4993..c20066c0 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ patches. Listed below are notable patches: | Mod | Status | |-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Lithium |
✅ compatibleLithium optimises many of the same parts of the game as Moonrise, for example the chunk system. Moonrise will automatically disable conflicting parts of Lithium. This mechanism needs to be manually validated for each Moonrise and Lithium release.
| +| Radium |
✅ compatibleRadium is an unofficial port of Lithium to NeoForge. Radium will automatically disable conflicting parts of itself when Moonrise is present. Any compatibility issues should be reported to Radium first.
| | FerriteCore |
📝 requires config changesIn `config/ferritecore-mixin.toml`:
Set `replaceNeighborLookup` and `replacePropertyMap` to `false`
| -| C2ME |
❌ incompatibleC2ME is based around modifications to the chunk system, which Moonrise replaces wholesale. This makes them fundamentally incompatible.
| +| C2ME |
❌ incompatibleC2ME is based around modifications to the chunk system, which Moonrise replaces wholesale. This makes them fundamentally incompatible.
| ## Configuration Moonrise provides documented configuration options for tuning the chunk system and enabling bugfixes in the config file `$mcdir$/config/moonrise.yml`. diff --git a/neoforge/build.gradle b/neoforge/build.gradle index 433c70a1..045db590 100644 --- a/neoforge/build.gradle +++ b/neoforge/build.gradle @@ -54,16 +54,14 @@ publishMods { incompatible( "notenoughcrashes", "starlight-neoforge", - "canary", - "radium" + "canary" ) } curseforge { incompatible( "not-enough-crashes-forge", "starlight-neoforge", - "canary", - "radium-reforged" + "canary" ) } } diff --git a/neoforge/src/main/resources/META-INF/neoforge.mods.toml b/neoforge/src/main/resources/META-INF/neoforge.mods.toml index 165367a1..f246f897 100644 --- a/neoforge/src/main/resources/META-INF/neoforge.mods.toml +++ b/neoforge/src/main/resources/META-INF/neoforge.mods.toml @@ -45,11 +45,6 @@ type = "incompatible" modId = "canary" type = "incompatible" -[[dependencies.moonrise]] -# unofficial lithium port -modId = "radium" -type = "incompatible" - [[dependencies.moonrise]] modId = "c2me" type = "incompatible"