diff --git a/bungee/src/main/java/com/lunarclient/apollo/ApolloBungeePlatform.java b/bungee/src/main/java/com/lunarclient/apollo/ApolloBungeePlatform.java index f8c41af6..d5c8fb66 100644 --- a/bungee/src/main/java/com/lunarclient/apollo/ApolloBungeePlatform.java +++ b/bungee/src/main/java/com/lunarclient/apollo/ApolloBungeePlatform.java @@ -50,6 +50,8 @@ import com.lunarclient.apollo.module.nametag.NametagModuleImpl; import com.lunarclient.apollo.module.notification.NotificationModule; import com.lunarclient.apollo.module.notification.NotificationModuleImpl; +import com.lunarclient.apollo.module.richpresence.RichPresenceModule; +import com.lunarclient.apollo.module.richpresence.RichPresenceModuleImpl; import com.lunarclient.apollo.module.serverrule.ServerRuleModule; import com.lunarclient.apollo.module.staffmod.StaffModModule; import com.lunarclient.apollo.module.staffmod.StaffModModuleImpl; @@ -118,6 +120,7 @@ public void onEnable() { .addModule(ModSettingModule.class) .addModule(NametagModule.class, new NametagModuleImpl()) .addModule(NotificationModule.class, new NotificationModuleImpl()) + .addModule(RichPresenceModule.class, new RichPresenceModuleImpl()) .addModule(ServerRuleModule.class) .addModule(StaffModModule.class, new StaffModModuleImpl()) .addModule(StopwatchModule.class, new StopwatchModuleImpl()) diff --git a/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java b/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java index 4c643033..b18d6915 100644 --- a/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java +++ b/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java @@ -50,6 +50,8 @@ import com.lunarclient.apollo.module.nametag.NametagModuleImpl; import com.lunarclient.apollo.module.notification.NotificationModule; import com.lunarclient.apollo.module.notification.NotificationModuleImpl; +import com.lunarclient.apollo.module.richpresence.RichPresenceModule; +import com.lunarclient.apollo.module.richpresence.RichPresenceModuleImpl; import com.lunarclient.apollo.module.serverrule.ServerRuleModule; import com.lunarclient.apollo.module.staffmod.StaffModModule; import com.lunarclient.apollo.module.staffmod.StaffModModuleImpl; @@ -175,6 +177,7 @@ public void onProxyInitialization(ProxyInitializeEvent event) { .addModule(ModSettingModule.class) .addModule(NametagModule.class, new NametagModuleImpl()) .addModule(NotificationModule.class, new NotificationModuleImpl()) + .addModule(RichPresenceModule.class, new RichPresenceModuleImpl()) .addModule(ServerRuleModule.class) .addModule(StaffModModule.class, new StaffModModuleImpl()) .addModule(StopwatchModule.class, new StopwatchModuleImpl())