cigans
All checks were successful
Deploy bot / build-and-deploy (push) Successful in 13s

This commit is contained in:
2025-08-09 00:39:58 +02:00
parent 312f4f80f5
commit a3367ef2eb

View File

@ -12,7 +12,7 @@ exports.run = async (client, message, args) => {
const data = await res.json(); const data = await res.json();
client.usersToReactTo = data.map((entry) => { client.usersToReactTo = data.map((entry) => {
const [userId, emoji] = entry.split(":"); const [userId, emoji] = entry.split("|");
return { userId, emoji }; return { userId, emoji };
}); });