Skip to content

Commit 55e2e2a

Browse files
committed
Updated to require jdk.unsupported...
1 parent 303a9f8 commit 55e2e2a

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ dependencies {
7272
testImplementation 'org.junit.jupiter:junit-jupiter'
7373

7474
installer('org.mangorage:installer:4.0.3')
75-
bot('org.mangorage:mangobot:12.0.20')
75+
bot('org.mangorage:mangobot:12.0.+')
7676

7777
library('org.luaj:luaj-jse:3.0.1')
7878

src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
requires net.dv8tion.jda;
44
requires com.google.gson;
55
requires luaj.jse;
6+
requires jdk.unsupported;
67

78
requires net.minecraftforge.eventbus;
89
requires java.desktop;

src/main/java/org/mangorage/mangobotplugin/commands/trick/TrickCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.mangorage.mangobotplugin.commands.trick;
22

3+
import com.google.gson.GsonBuilder;
34
import net.dv8tion.jda.api.entities.Member;
45
import net.dv8tion.jda.api.entities.Message;
56
import net.dv8tion.jda.api.entities.User;

src/main/java/org/mangorage/mangobotplugin/entrypoint/MangoBot.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ public void load() {
118118
.build();
119119

120120
getJDA().addEventListener(new BotEventListener(this));
121+
122+
System.out.println("Launched");
121123
}
122124

123125
public JDA getJDA() {

0 commit comments

Comments
 (0)