oopsie forgot to turn on the linter
This commit is contained in:
parent
d93d42a131
commit
bd38870c44
2 changed files with 5 additions and 9 deletions
|
@ -32,7 +32,7 @@ class Functions {
|
|||
return Math.round((Math.random() * (max - min) + min));
|
||||
}
|
||||
|
||||
randomColour () {
|
||||
randomColor () {
|
||||
const n = (Math.random() * 0xfffff * 1000000).toString(16);
|
||||
return '#' + n.slice(0, 6);
|
||||
}
|
||||
|
@ -51,10 +51,6 @@ class Functions {
|
|||
return role;
|
||||
}
|
||||
|
||||
searchMembers (guild, input) {
|
||||
|
||||
}
|
||||
|
||||
embedColor (guild, member) {
|
||||
if (!member) {
|
||||
return guild.members.cache.get(this.client.user.id).displayHexColor;
|
||||
|
|
|
@ -34,7 +34,7 @@ class Logger {
|
|||
|
||||
/**
|
||||
* 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
|
||||
* @returns {void}
|
||||
*/
|
||||
|
@ -44,7 +44,7 @@ class Logger {
|
|||
|
||||
/**
|
||||
* 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
|
||||
* @returns {void}
|
||||
*/
|
||||
|
@ -54,7 +54,7 @@ class Logger {
|
|||
|
||||
/**
|
||||
* 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
|
||||
* @returns {void}
|
||||
*/
|
||||
|
@ -64,7 +64,7 @@ class Logger {
|
|||
|
||||
/**
|
||||
* 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
|
||||
* @returns {void}
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue