3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-05 18:27:18 +00:00

Merge pull request #524 from seeyebe/fix/ban-delete-days-not-passed

fix: delete-days not applied when banning
This commit is contained in:
Miikka 2025-06-03 02:21:09 +03:00 committed by GitHub
commit 28f9b516f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -72,6 +72,7 @@ export const BanMsgCmd = modActionsMsgCmd({
member,
mod,
contactMethods,
args["delete-days"] ?? undefined,
);
},
});

View file

@ -89,6 +89,7 @@ export const BanSlashCmd = modActionsSlashCmd({
interaction.member as GuildMember,
mod,
contactMethods,
options["delete-days"] ?? undefined,
);
},
});