Skip to content

Commit

Permalink
Xd
Browse files Browse the repository at this point in the history
  • Loading branch information
kattah7 committed Jul 29, 2023
1 parent 521cb03 commit 94cdb47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clients/events/USERNOTICE.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ const USERNOTICE = () => {
const { channelName, channelID, senderUsername, senderUserID } = msg;
if ((msg.isResub || msg.isSub || msg.AnonSubgift || msg.isAnonGiftPaidUpgrade || msg.isSubgift) && channelID === '137199626') {
try {
const res = await rewardPoros(senderUserID, 1000);
const res = await rewardPoros(senderUserID, 5000);
if (!res || res == null) {
await client.say('kattah', "You aren't registered! type |poro to get started");
return;
}

await client.say('kattah', `Thank you for subbing!, ${senderUsername}. Here is free 1,000 poros!. You have ${res.poroCount + 1000} poros now!`);
await client.say('kattah', `Thank you for subbing!, ${senderUsername}. Here is free 5,000 poros!. You have ${res.poroCount + 5000} poros now!`);
} catch (err) {
console.log(err);
}
Expand Down

0 comments on commit 94cdb47

Please sign in to comment.