We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2373038 commit 3a78138Copy full SHA for 3a78138
mapleirInjector/src/org/mapleir/jdaplugin/MapleInjectedJDA.java
@@ -0,0 +1,13 @@
1
+package org.mapleir.jdaplugin;
2
+
3
+import club.bytecode.the.jda.JDA;
4
5
+/**
6
+ * Quick dependency injector to hack the circular reference so I can debug this plugin in my IDE
7
+ */
8
+public class MapleInjectedJDA {
9
+ public static void main(String[] args) {
10
+ JDA.injectedPlugin = MaplePlugin::new;
11
+ JDA.main(args);
12
+ }
13
+}
0 commit comments