remove python #1

Merged
nin0 merged 8 commits from js into main 2024-09-23 21:15:22 -04:00
Showing only changes of commit 852e2d47b3 - Show all commits

View file

@ -16,7 +16,7 @@ async function handler(ctx: Context, args: string[]) {
cmds cmds
.map( .map(
(c) => (c) =>
`*${c.name}*${c.aliases.length ? `_ (${c.aliases.join(", ")})_` : ""}${c.ownerOnly ? " 👑" : ""}${c.ownerOnly ? " 🛡️" : ""} - ${c.description}` `*${c.name}*${c.aliases.length ? `_ (${c.aliases.join(", ")})_` : ""}${c.ownerOnly ? " 👑" : ""}${c.modOnly ? " 🛡️" : ""} - ${c.description}`
) )
.join("\n") .join("\n")
); );