Updated blacklist texts to be more clear about what it does.

This commit is contained in:
2026-01-13 10:19:55 -03:00
parent 28a31df152
commit 9dbee4889a
5 changed files with 148 additions and 6 deletions

View File

@@ -35,9 +35,9 @@ module Commands
added = Database.toggle_server_blacklist(event.server.id)
if added
event.respond(content: "Server has been added to the blacklist. This server will no longer receive DMs.")
event.respond(content: "Server has been added to the blacklist. Users from this server will no longer receive DMs from cheeseBot when triggered.")
else
event.respond(content: "Server has been removed from the blacklist. This server will now receive DMs.")
event.respond(content: "Server has been removed from the blacklist. Users from this server will now receive DMs from cheeseBot when triggered.")
end
end
end

View File

@@ -22,9 +22,9 @@ module ButtonHandler
added = Database.toggle_user_blacklist(event.user.id)
if added
event.respond(content: "You have been added to the blacklist. You will no longer receive DMs.\n(Click this button again anytime to re-enable them.)", ephemeral: true)
event.respond(content: "You have been added to the blacklist. You will no longer receive DMs from cheeseBot when triggered.\n(Click this button again anytime to re-enable them.)", ephemeral: true)
else
event.respond(content: "You have been removed from the blacklist. You will now receive DMs.", ephemeral: true)
event.respond(content: "You have been removed from the blacklist. You will now receive DMs from cheeseBot when triggered.", ephemeral: true)
end
end
end