register reload command and disable party loading

This commit is contained in:
destro174 2021-08-18 14:27:19 +02:00
parent b0ae7e66d1
commit 090ae5c438
2 changed files with 3 additions and 1 deletions

View File

@ -54,6 +54,6 @@ public class PartyManager {
}
public static void loadParties() {
Queries.loadParties();
//Queries.loadParties();
}
}

View File

@ -1,6 +1,7 @@
package com.alttd.chat;
import com.alttd.chat.commands.GlobalAdminChat;
import com.alttd.chat.commands.Reload;
import com.alttd.chat.config.Config;
import com.alttd.chat.database.DatabaseConnection;
import com.alttd.chat.handlers.ChatHandler;
@ -100,6 +101,7 @@ public class VelocityChat {
public void loadCommands() {
new GlobalAdminChat(server);
new Reload(server);
// all (proxy)commands go here
}