mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-07-20 11:23:51 +00:00
TypeScript Initial
This commit is contained in:
18
src/client/funcs/saveState.ts
Normal file
18
src/client/funcs/saveState.ts
Normal file
@ -0,0 +1,18 @@
|
||||
module.exports = function saveState(client, guild, radio){
|
||||
client.datastore.checkEntry(guild.id);
|
||||
|
||||
let date = new Date();
|
||||
|
||||
let data = client.datastore.getEntry(guild.id);
|
||||
|
||||
data.state = {};
|
||||
data.state.channels = {};
|
||||
data.state.channels.text = radio.textChannel.id;
|
||||
data.state.channels.voice = radio.voiceChannel.id;
|
||||
data.state.date = date.toISOString();
|
||||
data.state.station = {};
|
||||
data.state.station.name = radio.station.name;
|
||||
data.state.station.owner = radio.station.owner;
|
||||
|
||||
client.datastore.updateEntry(guild, data);
|
||||
}
|
Reference in New Issue
Block a user