Add tons of quotes

This commit is contained in:
Dragon Fire
2021-04-25 10:36:44 -04:00
parent 33ef26eb78
commit e63a4accc5
5 changed files with 1992 additions and 400 deletions
+3 -1
View File
@@ -2,8 +2,10 @@ const Command = require('../../structures/Command');
const { createCanvas, loadImage } = require('canvas');
const request = require('node-superfetch');
const path = require('path');
const fs = require('fs');
const { list } = require('../../util/Util');
const hats = require('../../assets/json/hat');
const hats = fs.readdirSync(path.join(__dirname, '..', '..', 'assets', 'images', 'hat'))
.map(hat => hat.replace('.png', ''));
module.exports = class HatCommand extends Command {
constructor(client) {