- Can join and leave from voice channels - Will check to make sure that the bot is in a given system or no system before joining - Cleaned up the socket client with wrappers - Added a new module to handle subprocesses for the client - Beginning workings on OP25 handler - Added OP25 config object generator with config exporter
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
let currentSystem = undefined;
|
|
|
|
|
|
export const openOP25 = async (systemName) => {
|
|
currentSystem = systemName;
|
|
}
|
|
|
|
export const closeOP25 = async () => {
|
|
currentSystem = undefined;
|
|
}
|
|
|
|
export const getCurrentSystem = async () => {
|
|
return currentSystem;
|
|
} |