summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorBrady <thatgravyboat@gmail.com>2024-08-26 05:19:44 -0230
committerGitHub <noreply@github.com>2024-08-26 09:49:44 +0200
commit8852ced19ce4c3b3150dd622d9b36cf7b4d6cab6 (patch)
tree8e3fba8f9badd089f4c416d566773d4b7f32ee87 /src/main/java/at/hannibal2/skyhanni/config/commands
parent9ac4617c505750427a9cea9b4e4586f6cac257b8 (diff)
downloadskyhanni-8852ced19ce4c3b3150dd622d9b36cf7b4d6cab6.tar.gz
skyhanni-8852ced19ce4c3b3150dd622d9b36cf7b4d6cab6.tar.bz2
skyhanni-8852ced19ce4c3b3150dd622d9b36cf7b4d6cab6.zip
Feature: Remind Command (#1708)
Co-authored-by: Zickles <zicklesistaken@gmail.com> Co-authored-by: Cal <cwolfson58@gmail.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index fbd93a4d8..f021fe326 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -63,6 +63,7 @@ import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager
import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager
import at.hannibal2.skyhanni.features.misc.limbo.LimboTimeTracker
import at.hannibal2.skyhanni.features.misc.massconfiguration.DefaultConfigFeatures
+import at.hannibal2.skyhanni.features.misc.reminders.ReminderManager
import at.hannibal2.skyhanni.features.misc.update.UpdateManager
import at.hannibal2.skyhanni.features.misc.visualwords.VisualWordGui
import at.hannibal2.skyhanni.features.rift.area.westvillage.VerminTracker
@@ -170,6 +171,7 @@ object Commands {
{ DefaultConfigFeatures.onCommand(it) },
DefaultConfigFeatures::onComplete,
)
+ registerCommand("shremind", "Set a reminder for yourself") { ReminderManager.command(it) }
registerCommand("shwords", "Opens the config list for modifying visual words") { openVisualWords() }
}