diff --git a/README.md b/README.md index eb4d499..c20066c 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 433c70a..045db59 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 165367a..f246f89 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"