From 2dd1970d6d31ea1e2bbfa30b57141ea9a4720834 Mon Sep 17 00:00:00 2001 From: NetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com> Date: Thu, 27 Apr 2023 06:07:33 -0400 Subject: Added Discord RPC (#35) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java') diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 46fcd2e54..cf6ff22b9 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -43,6 +43,7 @@ import at.hannibal2.skyhanni.features.itemabilities.abilitycooldown.ItemAbilityC import at.hannibal2.skyhanni.features.minion.MinionCollectLogic; import at.hannibal2.skyhanni.features.minion.MinionFeatures; import at.hannibal2.skyhanni.features.misc.*; +import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager; import at.hannibal2.skyhanni.features.misc.tiarelay.TiaRelayHelper; import at.hannibal2.skyhanni.features.misc.tiarelay.TiaRelayWaypoints; import at.hannibal2.skyhanni.features.misc.update.UpdateManager; @@ -149,6 +150,7 @@ public class SkyHanniMod { loadModule(new CropAccessoryData()); loadModule(new MayorElection()); loadModule(new GardenComposterUpgradesData()); + loadModule(new ActionBarStatsData()); // APIs loadModule(new BazaarApi()); @@ -273,6 +275,7 @@ public class SkyHanniMod { loadModule(new AshfangMinisNametagHider()); loadModule(new GardenTeleportPadInventoryNumber()); loadModule(new ComposterOverlay()); + loadModule(new DiscordRPCManager()); loadModule(new GardenCropMilestoneFix()); loadModule(new GardenBurrowingSporesNotifier()); loadModule(new WildStrawberryDyeNotification()); @@ -325,4 +328,4 @@ public class SkyHanniMod { System.out.println("consoleLog: (" + message + ")"); } } -} +} \ No newline at end of file -- cgit