aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/commands
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-09-27 01:07:17 +0200
committernea <nea@nea.moe>2023-09-27 01:07:17 +0200
commit6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6 (patch)
treedfd1698077c7384810c5aaedf1d645c27daf4d34 /src/main/kotlin/moe/nea/firmament/commands
parenteaf91279b8f65b30f05a7be9a8ae1b6b18859ae4 (diff)
downloadFirmament-6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6.tar.gz
Firmament-6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6.tar.bz2
Firmament-6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6.zip
Add quick /join command for catacombs and kuudra
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/commands')
-rw-r--r--src/main/kotlin/moe/nea/firmament/commands/RestArgumentType.kt19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/commands/RestArgumentType.kt b/src/main/kotlin/moe/nea/firmament/commands/RestArgumentType.kt
new file mode 100644
index 0000000..74c4011
--- /dev/null
+++ b/src/main/kotlin/moe/nea/firmament/commands/RestArgumentType.kt
@@ -0,0 +1,19 @@
+/*
+ * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+package moe.nea.firmament.commands
+
+import com.mojang.brigadier.StringReader
+import com.mojang.brigadier.arguments.ArgumentType
+
+object RestArgumentType : ArgumentType<String> {
+ override fun parse(reader: StringReader): String {
+ val remaining = reader.remaining
+ reader.cursor += remaining.length
+ return remaining
+ }
+
+}