diff options
author | nea <nea@nea.moe> | 2023-05-24 02:29:20 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-24 02:29:20 +0200 |
commit | 5984383d2c48b4ae84bac1827bc6ca1891af8cf0 (patch) | |
tree | 90aaae93147ce7aad48777be488039626b70512a /src/main/kotlin/moe/nea/firmament/commands | |
parent | 5ff50799b6c8baf6dd87ecbf44860d19a4acceab (diff) | |
download | Firmament-5984383d2c48b4ae84bac1827bc6ca1891af8cf0.tar.gz Firmament-5984383d2c48b4ae84bac1827bc6ca1891af8cf0.tar.bz2 Firmament-5984383d2c48b4ae84bac1827bc6ca1891af8cf0.zip |
Common config gui
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/commands')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/commands/rome.kt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/commands/rome.kt b/src/main/kotlin/moe/nea/firmament/commands/rome.kt index bdbaa3f..4fde10e 100644 --- a/src/main/kotlin/moe/nea/firmament/commands/rome.kt +++ b/src/main/kotlin/moe/nea/firmament/commands/rome.kt @@ -1,17 +1,20 @@ package moe.nea.firmament.commands import com.mojang.brigadier.CommandDispatcher -import io.github.cottonmc.cotton.gui.client.CottonClientScreen import net.fabricmc.fabric.api.client.command.v2.FabricClientCommandSource import net.minecraft.text.Text import moe.nea.firmament.features.world.FairySouls -import moe.nea.firmament.gui.repoGui +import moe.nea.firmament.gui.config.AllConfigsGui import moe.nea.firmament.repo.RepoManager import moe.nea.firmament.util.SBData -import moe.nea.firmament.util.ScreenUtil.setScreenLater fun firmamentCommand() = literal("firmament") { + thenLiteral("config") { + thenExecute { + AllConfigsGui.showAllGuis() + } + } thenLiteral("repo") { thenLiteral("reload") { thenLiteral("fetch") { @@ -25,9 +28,6 @@ fun firmamentCommand() = literal("firmament") { RepoManager.reload() } } - thenExecute { - setScreenLater(CottonClientScreen(repoGui())) - } } thenLiteral("dev") { thenLiteral("config") { |