mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
10 lines
No EOL
203 B
JavaScript
10 lines
No EOL
203 B
JavaScript
module.exports = class {
|
|
constructor(client) {
|
|
this.client = client;
|
|
}
|
|
|
|
async run(oldMessage, newMessage) {
|
|
if (!newMessage.editedAt) return;
|
|
this.client.emit("messageCreate", newMessage);
|
|
}
|
|
}; |