Skip to content

Commit 11b931b

Browse files
committed
Got isDev added to MangoBotCore.java plugin
1 parent 4cdb150 commit 11b931b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/org/mangorage/entrypoint/MangoBotCore.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
public final class MangoBotCore {
66
static String[] args;
77
static boolean devMode = false;
8-
9-
108
static boolean loaded = false;
119

1210
public static String[] getArgs() {

src/main/java/org/mangorage/mangobotcore/MangoBotCore.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ public final class MangoBotCore implements Plugin {
1010

1111
public static final String ID = "mangobotcore";
1212

13+
public static boolean isDevMode() {
14+
return org.mangorage.entrypoint.MangoBotCore.isDevMode();
15+
}
16+
1317
@Override
1418
public String getId() {
1519
return ID;

0 commit comments

Comments
 (0)