mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-12-23 03:34:57 +00:00
Don't disconnect on reload
This commit is contained in:
parent
4782438bc8
commit
d8f8c45246
1 changed files with 3 additions and 5 deletions
|
@ -1,8 +1,6 @@
|
||||||
package me.StevenLawson.TotalFreedomMod.discord.bridge;
|
package me.StevenLawson.TotalFreedomMod.discord.bridge;
|
||||||
|
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.concurrent.CountDownLatch;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
import me.StevenLawson.TotalFreedomMod.Log;
|
import me.StevenLawson.TotalFreedomMod.Log;
|
||||||
import me.StevenLawson.TotalFreedomMod.admin.AdminList;
|
import me.StevenLawson.TotalFreedomMod.admin.AdminList;
|
||||||
|
@ -208,7 +206,7 @@ public class DiscordBridge {
|
||||||
CHANNEL.sendMessage(sanitizeMessage(message)).get();
|
CHANNEL.sendMessage(sanitizeMessage(message)).get();
|
||||||
} catch (Exception ignored) {
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
CountDownLatch shutdownWaiter = new CountDownLatch(1);
|
/*CountDownLatch shutdownWaiter = new CountDownLatch(1);
|
||||||
|
|
||||||
Thread t = new Thread(() -> {
|
Thread t = new Thread(() -> {
|
||||||
DISCORD_API.addLostConnectionListener(
|
DISCORD_API.addLostConnectionListener(
|
||||||
|
@ -220,7 +218,7 @@ public class DiscordBridge {
|
||||||
} catch (InterruptedException ignored) {
|
} catch (InterruptedException ignored) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
t.start();
|
t.start();*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,7 +237,7 @@ public class DiscordBridge {
|
||||||
ADMIN_CHANNEL.sendMessage(sanitizeMessage(message)).get();
|
ADMIN_CHANNEL.sendMessage(sanitizeMessage(message)).get();
|
||||||
} catch (Exception ignored) {
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
DISCORD_API.disconnect();
|
//DISCORD_API.disconnect();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue