diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-26 18:55:30 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-26 18:55:30 +0200 |
commit | 8ab44088546bf3360564e1a09f0831fea7659d2e (patch) | |
tree | ef8441392283614d2cc6700d056465b714eec5c4 /src | |
parent | 928f6a45017df8aeb467e6879b350ade89c73d9a (diff) | |
download | firmament-8ab44088546bf3360564e1a09f0831fea7659d2e.tar.gz firmament-8ab44088546bf3360564e1a09f0831fea7659d2e.tar.bz2 firmament-8ab44088546bf3360564e1a09f0831fea7659d2e.zip |
Isolate modmenu compat
[no changelog]
Diffstat (limited to 'src')
-rw-r--r-- | src/compat/modmenu/java/moe/nea/firmament/compat/modmenu/FirmamentModMenuPlugin.kt (renamed from src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt) | 5 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt b/src/compat/modmenu/java/moe/nea/firmament/compat/modmenu/FirmamentModMenuPlugin.kt index f889bf3..b734e2c 100644 --- a/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt +++ b/src/compat/modmenu/java/moe/nea/firmament/compat/modmenu/FirmamentModMenuPlugin.kt @@ -1,6 +1,4 @@ - - -package moe.nea.firmament.modmenu +package moe.nea.firmament.compat.modmenu import com.terraformersmc.modmenu.api.ConfigScreenFactory import com.terraformersmc.modmenu.api.ModMenuApi @@ -11,4 +9,3 @@ class FirmamentModMenuPlugin : ModMenuApi { return ConfigScreenFactory { AllConfigsGui.makeScreen(it) } } } - diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index cb623dc..08072ef 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -34,7 +34,7 @@ "moe.nea.firmament.rei.FirmamentReiPlugin" ], "modmenu": [ - "moe.nea.firmament.modmenu.FirmamentModMenuPlugin" + "moe.nea.firmament.compat.modmenu.FirmamentModMenuPlugin" ], "jarvis": [ "moe.nea.firmament.jarvis.JarvisIntegration" |