diff --git a/commands/refetch.js b/commands/refetch.js index fb47061..4660282 100644 --- a/commands/refetch.js +++ b/commands/refetch.js @@ -12,7 +12,7 @@ exports.run = async (client, message, args) => { const data = await res.json(); client.usersToReactTo = data.map((entry) => { - const [userId, emoji] = entry.split(":"); + const [userId, emoji] = entry.split("|"); return { userId, emoji }; });