diff options
author | Linnea Gräf <nea@nea.moe> | 2025-06-26 18:21:02 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-06-26 18:21:11 +0200 |
commit | 1c5d0df368471031f892330de7628ff78a6204ed (patch) | |
tree | 6d222fb45f3fbacff255de5347314204189a8b3c /src/main/kotlin/commands/rome.kt | |
parent | e926550bd19bddb0a0e026723bc6113ac09ea76f (diff) | |
download | Firmament-1c5d0df368471031f892330de7628ff78a6204ed.tar.gz Firmament-1c5d0df368471031f892330de7628ff78a6204ed.tar.bz2 Firmament-1c5d0df368471031f892330de7628ff78a6204ed.zip |
feat(internal): Add a tab list api
Diffstat (limited to 'src/main/kotlin/commands/rome.kt')
-rw-r--r-- | src/main/kotlin/commands/rome.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/commands/rome.kt b/src/main/kotlin/commands/rome.kt index 9fc5386..46ddef1 100644 --- a/src/main/kotlin/commands/rome.kt +++ b/src/main/kotlin/commands/rome.kt @@ -12,6 +12,7 @@ import moe.nea.firmament.apis.UrsaManager import moe.nea.firmament.events.CommandEvent import moe.nea.firmament.events.FirmamentEventBus import moe.nea.firmament.features.debug.DebugLogger +import moe.nea.firmament.features.debug.DeveloperFeatures import moe.nea.firmament.features.debug.PowerUserTools import moe.nea.firmament.features.inventory.buttons.InventoryButtons import moe.nea.firmament.features.inventory.storageoverlay.StorageOverlayScreen @@ -202,7 +203,7 @@ fun firmamentCommand() = literal("firmament") { } } } - thenLiteral("dev") { + thenLiteral(DeveloperFeatures.DEVELOPER_SUBCOMMAND) { thenLiteral("simulate") { thenArgument("message", RestArgumentType) { message -> thenExecute { |