diff --git a/index.js b/index.js index 795b9d0..22fdc42 100644 --- a/index.js +++ b/index.js @@ -96,15 +96,6 @@ client.once('ready', () =>{ * dc - Delete an adventure channel (only the captain can use this) */ -function getCurrentDateAndTime() { - const today = new Date(); - const date = `${today.getFullYear()}-${today.getMonth()+1}-${today.getDate()}`; - const time = `${today.getHours()}:${today.getMinutes()}:${today.getSeconds()}`; - const dateTime = `${date} ${time}`; - - return dateTime; -} - function generateQueueTitle() { return `\n===== ADVENTURE QUEUE (${playerQueue.length}/${config.maxqueuesize}) =====`; }