oopsie forgot to turn on the linter

This commit is contained in:
Emily 2022-12-12 12:25:34 +11:00
parent d93d42a131
commit bd38870c44
2 changed files with 5 additions and 9 deletions

View File

@ -32,7 +32,7 @@ class Functions {
return Math.round((Math.random() * (max - min) + min)); return Math.round((Math.random() * (max - min) + min));
} }
randomColour () { randomColor () {
const n = (Math.random() * 0xfffff * 1000000).toString(16); const n = (Math.random() * 0xfffff * 1000000).toString(16);
return '#' + n.slice(0, 6); return '#' + n.slice(0, 6);
} }
@ -51,10 +51,6 @@ class Functions {
return role; return role;
} }
searchMembers (guild, input) {
}
embedColor (guild, member) { embedColor (guild, member) {
if (!member) { if (!member) {
return guild.members.cache.get(this.client.user.id).displayHexColor; return guild.members.cache.get(this.client.user.id).displayHexColor;

View File

@ -34,7 +34,7 @@ class Logger {
/** /**
* Log something related to being successful * Log something related to being successful
* @param {string} title The title of the log enty * @param {string} title The title of the log entry
* @param {string} body The body of the log entry * @param {string} body The body of the log entry
* @returns {void} * @returns {void}
*/ */
@ -44,7 +44,7 @@ class Logger {
/** /**
* Log something related to a warning * Log something related to a warning
* @param {string} title The title of the log enty * @param {string} title The title of the log entry
* @param {string} body The body of the log entry * @param {string} body The body of the log entry
* @returns {void} * @returns {void}
*/ */
@ -54,7 +54,7 @@ class Logger {
/** /**
* Log something related to an error * Log something related to an error
* @param {string} title The title of the log enty * @param {string} title The title of the log entry
* @param {string} body The body of the log entry * @param {string} body The body of the log entry
* @returns {void} * @returns {void}
*/ */
@ -64,7 +64,7 @@ class Logger {
/** /**
* Log something related to debugging * Log something related to debugging
* @param {string} title The title of the log enty * @param {string} title The title of the log entry
* @param {string} body The body of the log entry * @param {string} body The body of the log entry
* @returns {void} * @returns {void}
*/ */