diff --git a/src/commands/ProtectionsCommands.ts b/src/commands/ProtectionsCommands.ts index 60acccf5..1f71324a 100644 --- a/src/commands/ProtectionsCommands.ts +++ b/src/commands/ProtectionsCommands.ts @@ -48,7 +48,7 @@ export async function execListProtections(roomId: string, event: any, mjolnir: M let text = "Available protections:\n"; for (const protection of possibleProtections) { - const emoji = enabledProtections.includes(protection) ? '🟢' : '🔴'; // green vs red circles + const emoji = enabledProtections.includes(protection) ? '🟢 (enabled)' : '🔴 (disabled)'; html += `
${protection} - ${PROTECTIONS[protection].description}