Add jda getter

This commit is contained in:
ByteDream 2020-12-14 19:35:31 +01:00
parent 7cd5fcd066
commit dc1ddb2eda

View File

@ -99,4 +99,14 @@ public class Discord {
jda = jdaBuilder.build();
}
/**
* Returns the running jda instance
*
* @return the jda instance
* @since 1.2
*/
public JDA getJda() {
return jda;
}
}