pineafan | 3276721 | 2022-03-14 21:27:39 +0000 | [diff] [blame] | 1 | const {addLog} = require('../scripts/addLogs'); |
2 | module.exports = { | ||||
3 | name:'stickerCreate', | ||||
4 | once:false, | ||||
5 | async execute(sticker) { | ||||
6 | let data = { | ||||
7 | id: sticker.id, | ||||
8 | createdAt: sticker.createdTimestamp, | ||||
9 | description: sticker.description, | ||||
10 | name: sticker.name, | ||||
11 | type: sticker.type, | ||||
12 | tags: sticker.tags, | ||||
13 | createdBy: sticker.user.id | ||||
14 | } | ||||
15 | |||||
16 | addLog(role.guild.id, data); | ||||
17 | } | ||||
18 | } |