1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-21 18:44:19 +00:00

Add /answer superposition

This commit is contained in:
Steffo 2024-10-28 06:47:13 +01:00
parent ab69dc15bc
commit 5197279f0c
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -1,16 +1,16 @@
use anyhow::Context;
use rand::SeedableRng;
use rand::seq::SliceRandom;
use teloxide::Bot;
use rand::SeedableRng;
use teloxide::payloads::SendMessageSetters;
use teloxide::prelude::{Message, Requester};
use teloxide::types::ReplyParameters;
use teloxide::Bot;
use crate::services::telegram::commands::CommandResult;
// Cerchiamo di tenere bilanciate le tre colonne, o almeno le prime due.
// Se avete un'idea ma metterebbe troppe opzioni in un'unica categoria, mettetela sotto commento.
const ANSWERS: [&str; 60] = [
const ANSWERS: [&str; 61] = [
// risposte "sì": 20
"🔵 Sì.",
"🔵 Decisamente sì!",
@ -76,6 +76,9 @@ const ANSWERS: [&str; 60] = [
"❔ idk dude",
"❔ Non mi è permesso condividere questa informazione.",
"❔ [RADIO] Mantengo la posizione.",
// superposizione: 1
"🔵❌ Yesn't.",
];
pub async fn handler(bot: &Bot, message: &Message) -> CommandResult {