File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
org/mangorage/mangobotplugin/module Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -70,10 +70,10 @@ dependencies {
7070
7171 installer(' org.mangorage:installer:4.0.20' )
7272
73- bootstrap(" org.mangorage:mangobotbootstrap:1.0.29 " )
73+ bootstrap(" org.mangorage:mangobotbootstrap:1.0.30 " )
7474 plugin(' org.mangorage:mangobot:12.0.63' )
7575
76- library ' org.slf4j:slf4j-simple:2.0.13' // Use a recent version)
76+ library( ' org.slf4j:slf4j-simple:2.0.13' ) // Use a recent version)
7777 library(' org.luaj:luaj-jme:3.0.1' )
7878
7979 library(' dev.arbjerg:lavaplayer:2.2.3' )
Original file line number Diff line number Diff line change 11module org .mangorage .mangobotplugin {
2+ requires okio ;
3+ requires kotlin .stdlib ;
4+ requires com .fasterxml .jackson .databind ;
5+ requires org .slf4j .simple ;
6+
27 requires org .mangorage .mangobotcore ;
38
49 requires net .dv8tion .jda ;
2934 exports org .mangorage .mangobotplugin .pagedlist to net .dv8tion .jda ;
3035
3136 provides org .mangorage .mangobotcore .plugin .api .Plugin with org .mangorage .mangobotplugin .entrypoint .MangoBot ;
32- provides org .mangorage .bootstrap .api .module .IModuleConfigurator with org .mangorage .mangobotplugin .module .ModuleConfigurator ;
37+ // provides org.mangorage.bootstrap.api.module.IModuleConfigurator with org.mangorage.mangobotplugin.module.ModuleConfigurator;
3338
3439 uses org .mangorage .mangobotcore .plugin .api .Plugin ;
3540}
Original file line number Diff line number Diff line change 11package org .mangorage .mangobotplugin .module ;
22
33
4- import org .mangorage .bootstrap .api .module .IModuleConfigurator ;
54
65import java .util .List ;
76
8- public final class ModuleConfigurator implements IModuleConfigurator {
7+ public final class ModuleConfigurator {
8+
99
10- @ Override
1110 public List <String > getChildren (String s ) {
1211 System .out .println ("Found This -> " + s );
1312 if (s .equals ("lavaplayer" )) {
You can’t perform that action at this time.
0 commit comments