2021-11-18 18:56:42 +01:00
|
|
|
const client = require("..");
|
2021-09-21 01:51:56 +02:00
|
|
|
const starboardclient = require("../client/StarboardClient");
|
2021-11-18 18:56:42 +01:00
|
|
|
client.on("messageReactionAdd", async reaction => {
|
2021-09-21 01:51:56 +02:00
|
|
|
starboardclient.listener(reaction);
|
2021-09-17 18:28:39 +02:00
|
|
|
});
|
2021-09-21 01:51:56 +02:00
|
|
|
client.on("messageReactionRemove", async reaction => {
|
|
|
|
starboardclient.listener(reaction);
|
2021-09-17 18:28:39 +02:00
|
|
|
});
|