Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mrepol742 committed Feb 5, 2024
1 parent 410f5f1 commit 2f0fbc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5966,7 +5966,7 @@ async function ai(api, event) {
if (err) return sendMessage(api, event, handleError({ stacktrace: err, cuid: api.getCurrentUserID(), e: event }));
});
});
} else if (testCommand(api, query, "coinflip--token", event.senderID, "user", true)) {
} else if (testCommand(api, query, "coinflip--token", event.senderID, "user")) {
if (isGoingToFast(api, event)) return;
let data = input.split(" ");
if (data.length < 4) {
Expand All @@ -5992,7 +5992,7 @@ async function ai(api, event) {
sendMessage(api, event, "Houston! Unknown or missing option.\n\n Usage: coinflip --token amount type" + "\n " + example[Math.floor(Math.random() * example.length)] + " coinflip --token 200 heads");
}
}
} else if (testCommand(api, query, "coinflip", event.senderID, "user", true)) {
} else if (testCommand(api, query, "coinflip", event.senderID, "user")) {
if (isGoingToFast(api, event)) return;
let data = input.split(" ");
if (data.length < 2) {
Expand Down

0 comments on commit 2f0fbc0

Please sign in to comment.