diff options
author | Linnea Gräf <nea@nea.moe> | 2024-03-24 00:43:16 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-03-24 00:43:16 +0100 |
commit | a84da715497215848797719fe528c2f5c1d4aed3 (patch) | |
tree | 3be839c8cf6fb080b7307919d94bb82666f79a7b /src/main/kotlin/moe/nea/firmament/commands | |
parent | 55586a64d7037cdc557b8b2c337d284ddb1ac981 (diff) | |
download | Firmament-a84da715497215848797719fe528c2f5c1d4aed3.tar.gz Firmament-a84da715497215848797719fe528c2f5c1d4aed3.tar.bz2 Firmament-a84da715497215848797719fe528c2f5c1d4aed3.zip |
Add ordered waypoints (ColeWeight compat)
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/commands')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/commands/rome.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/commands/rome.kt b/src/main/kotlin/moe/nea/firmament/commands/rome.kt index 7df39b3..74391a6 100644 --- a/src/main/kotlin/moe/nea/firmament/commands/rome.kt +++ b/src/main/kotlin/moe/nea/firmament/commands/rome.kt @@ -13,6 +13,7 @@ import io.ktor.client.statement.* import net.fabricmc.fabric.api.client.command.v2.FabricClientCommandSource import net.minecraft.text.Text import moe.nea.firmament.apis.UrsaManager +import moe.nea.firmament.events.CommandEvent import moe.nea.firmament.features.inventory.buttons.InventoryButtons import moe.nea.firmament.features.inventory.storageoverlay.StorageOverlayScreen import moe.nea.firmament.features.world.FairySouls @@ -218,6 +219,7 @@ fun firmamentCommand() = literal("firmament") { } } } + CommandEvent.SubCommand.publish(CommandEvent.SubCommand(this@literal)) } |