2
2
3
3
import commands .botowner .*;
4
4
import commands .moderation .*;
5
- import commands .music .CommandJoin ;
6
5
import commands .tools .*;
7
6
import commands .usercommands .*;
8
7
import commands .usercommands .CommandHelp ;
9
8
import commands .botowner .CommandInfo ;
10
9
import commands .usercommands .CommandPremium ;
11
10
import listener .*;
12
- import music .AudioCore ;
13
11
import net .dv8tion .jda .bot .sharding .DefaultShardManagerBuilder ;
14
12
import net .dv8tion .jda .bot .sharding .ShardManager ;
15
13
import net .dv8tion .jda .core .JDA ;
16
- import net .dv8tion .jda .core .entities .Game ;
17
14
import net .dv8tion .jda .core .utils .SessionController ;
18
15
import org .apache .commons .net .ftp .FTPClient ;
19
16
import org .slf4j .Logger ;
@@ -31,7 +28,6 @@ public class Main {
31
28
public static boolean dev = true ;
32
29
public static SessionController sessionController ;
33
30
public static ShardManager shardManager ;
34
- public static AudioCore audioCore ;
35
31
36
32
public static void main (String [] args2 ) {
37
33
try {
@@ -82,7 +78,7 @@ public static void main(String[] args2) {
82
78
commandHandler .commands .put ("ban" , new CommandBan ());
83
79
commandHandler .commands .put ("kick" , new CommandKick ());
84
80
commandHandler .commands .put ("github" , new CommandGitHub ());
85
- commandHandler .commands .put ("stop " , new CommandStop ());
81
+ commandHandler .commands .put ("botstop " , new CommandStop ());
86
82
commandHandler .commands .put ("setlvl" , new CommandSetLevel ());
87
83
commandHandler .commands .put ("setxp" , new CommandSetXP ());
88
84
commandHandler .commands .put ("clyde" , new CommandClyde ());
@@ -96,11 +92,11 @@ public static void main(String[] args2) {
96
92
commandHandler .commands .put ("levelmessage" , new CommandLevelMessage ());
97
93
commandHandler .commands .put ("guild" , new CommandGuild ());
98
94
commandHandler .commands .put ("help" , new CommandHelp ());
99
- commandHandler .commands .put ("info " , new CommandInfo ());
95
+ commandHandler .commands .put ("about " , new CommandInfo ());
100
96
commandHandler .commands .put ("warn" , new CommandWarn ());
101
97
commandHandler .commands .put ("token" , new CommandToken ());
102
98
commandHandler .commands .put ("log" , new CommandLog ());
103
- commandHandler .commands .put ("play" , new CommandPlay ());
99
+ commandHandler .commands .put ("game- play" , new CommandPlay ());
104
100
commandHandler .commands .put ("dm" , new CommandDM ());
105
101
commandHandler .commands .put ("miner" , new CommandMiner ());
106
102
commandHandler .commands .put ("premium" , new CommandPremium ());
@@ -111,9 +107,8 @@ public static void main(String[] args2) {
111
107
commandHandler .commands .put ("uptime" , new CommandUptime ());
112
108
commandHandler .commands .put ("role" , new CommandRole ());
113
109
commandHandler .commands .put ("botinfo" , new CommandBotInfo ());
114
- /*MUSIC*/
115
- commandHandler .commands .put ("join" , new CommandJoin ());
116
- commandHandler .commands .put ("leave" , new commands .music .CommandLeave ());
110
+ commandHandler .commands .put ("upvoted" , new CommandUpvoted ());
111
+
117
112
args = args2 ;
118
113
logger .info ("loaded all commands" );
119
114
logger .info ("Starting the Bot..." );
0 commit comments