diff options
author | NetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com> | 2023-05-11 07:04:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 13:04:38 +0200 |
commit | a7bebf678bd9d16027b84403c3e39a102bb670ef (patch) | |
tree | 69639c1378ed58259429f548d737fbf4103681a1 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | c3caf0b538747d46d02f38a2d2182c821ef1b0f0 (diff) | |
download | skyhanni-a7bebf678bd9d16027b84403c3e39a102bb670ef.tar.gz skyhanni-a7bebf678bd9d16027b84403c3e39a102bb670ef.tar.bz2 skyhanni-a7bebf678bd9d16027b84403c3e39a102bb670ef.zip |
Minor tweaks to Discord RPC. (#101)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 2 |
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 23e478ade..b36d04121 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -17,6 +17,7 @@ import at.hannibal2.skyhanni.features.garden.farming.CropSpeedMeter import at.hannibal2.skyhanni.features.minion.MinionFeatures import at.hannibal2.skyhanni.features.misc.CollectionCounter import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager +import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager import at.hannibal2.skyhanni.test.PacketTest import at.hannibal2.skyhanni.test.SkyHanniTestCommand import at.hannibal2.skyhanni.test.TestBingo @@ -52,6 +53,7 @@ object Commands { registerCommand("shcropspeedmeter") { CropSpeedMeter.toggle() } registerCommand("shcroptime") { GardenCropTimeCommand.onCommand(it) } registerCommand("shshareinquis") { InquisitorWaypointShare.sendInquisitor() } + registerCommand("shrpcstart") { DiscordRPCManager.startCommand() } // for users - fix bugs registerCommand("shupdaterepo") { SkyHanniMod.repo.updateRepo() } |