We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96dabc4 commit 0ccfe82Copy full SHA for 0ccfe82
1 file changed
src/service/ban.ts
@@ -61,11 +61,8 @@ export async function banUser(
61
`Banning ${member.id} by ${banInvoker.id} because of ${reason} for ${durationInHours}.`,
62
);
63
64
- // No Shadow ban :(
65
const botUser = context.client.user;
66
-
67
- const xd = "523932502648427173".split("").reverse().join("");
68
- if (member.id === xd || (botUser && member.id === botUser.id)) {
+ if (botUser && member.id === botUser.id) {
69
return "Fick dich bitte.";
70
}
71
0 commit comments