Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Fixed a serious bug in the purge command
Browse files Browse the repository at this point in the history
  • Loading branch information
Serena1432 committed Jul 15, 2021
1 parent b21ea75 commit 10abee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/purge.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function info(client, message, args, language) {
eval("team = client.economyManager[message.author.id].team" + c);
if (team && team.members.length) {
for (var j = 0; j < team.members.length; j++) {
if (team.members[j] == waifu.id) return inTeam = true;
if (team.members[j] == waifu.id) inTeam = true;
}
}
}
Expand Down

0 comments on commit 10abee3

Please sign in to comment.