diff options
author | nea <nea@nea.moe> | 2023-01-20 04:37:33 +0100 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-01-20 04:37:33 +0100 |
commit | 81b5f58574d5ea9116f4ef0bb0c0e095f83e21a0 (patch) | |
tree | 3a96bfa2da128b6672dcdb77e707c81f9fab93b9 /src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt | |
parent | f85c449ed586c7ced780423943e55bfa5abaeb0f (diff) | |
download | firmament-81b5f58574d5ea9116f4ef0bb0c0e095f83e21a0.tar.gz firmament-81b5f58574d5ea9116f4ef0bb0c0e095f83e21a0.tar.bz2 firmament-81b5f58574d5ea9116f4ef0bb0c0e095f83e21a0.zip |
Restructure commands
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt b/src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt index 99af49a..a60073a 100644 --- a/src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt +++ b/src/main/kotlin/moe/nea/notenoughupdates/commands/rome.kt @@ -12,20 +12,20 @@ import moe.nea.notenoughupdates.util.ScreenUtil.setScreenLater fun neuCommand() = literal("neu") { - thenLiteral("reload") { - thenLiteral("fetch") { + thenLiteral("repo") { + thenLiteral("reload") { + thenLiteral("fetch") { + thenExecute { + source.sendFeedback(Text.translatable("notenoughupdates.repo.reload.network")) // TODO better reporting + RepoManager.launchAsyncUpdate() + } + } thenExecute { - source.sendFeedback(Text.translatable("notenoughupdates.repo.reload.network")) // TODO better reporting - RepoManager.launchAsyncUpdate() + source.sendFeedback(Text.translatable("notenoughupdates.repo.reload.disk")) + RepoManager.reload() } } thenExecute { - source.sendFeedback(Text.translatable("notenoughupdates.repo.reload.disk")) - RepoManager.reload() - } - } - thenLiteral("repo") { - thenExecute { setScreenLater(CottonClientScreen(repoGui())) } } |