mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Merge branch 'master' into newqueue
This commit is contained in:
commit
55a3502ce9
3 changed files with 11 additions and 7 deletions
|
@ -42,6 +42,12 @@ queue_emojis = [":one:",
|
||||||
# Init the event loop
|
# Init the event loop
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
|
|
||||||
|
# TODO: remove me
|
||||||
|
# Init the config reader
|
||||||
|
config = configparser.ConfigParser()
|
||||||
|
config.read("config.ini")
|
||||||
|
config = dict(config)
|
||||||
|
|
||||||
# Radio messages
|
# Radio messages
|
||||||
radio_messages = ["https://www.youtube.com/watch?v=3-yeK1Ck4yk",
|
radio_messages = ["https://www.youtube.com/watch?v=3-yeK1Ck4yk",
|
||||||
"https://youtu.be/YcR7du_A1Vc",
|
"https://youtu.be/YcR7du_A1Vc",
|
||||||
|
@ -87,7 +93,8 @@ song_special_messages = {
|
||||||
"police academy": ":arrow_forward: {song} - freedom.png",
|
"police academy": ":arrow_forward: {song} - freedom.png",
|
||||||
"super smash bros. ultimate": ":arrow_forward: Re-awaken the undying light with {song}!",
|
"super smash bros. ultimate": ":arrow_forward: Re-awaken the undying light with {song}!",
|
||||||
"powerwolf": ":arrow_forward: Spaggia, ma non ti sei un po' stancato di {song}?",
|
"powerwolf": ":arrow_forward: Spaggia, ma non ti sei un po' stancato di {song}?",
|
||||||
"eurobeat": ":arrow_forward: Nemesis approva la scelta di {song}. Ben fatto, amico."
|
"eurobeat": ":arrow_forward: Nemesis approva la scelta di {song}. Ben fatto, amico.",
|
||||||
|
"k/da": ":arrow_forward: You won a free deportation to Korea! Now playing: {song}."
|
||||||
}
|
}
|
||||||
|
|
||||||
# FFmpeg settings
|
# FFmpeg settings
|
||||||
|
|
|
@ -199,8 +199,7 @@ def cmd_diario(bot: Bot, update: Update):
|
||||||
saver = author
|
saver = author
|
||||||
except IndexError:
|
except IndexError:
|
||||||
if update.message.reply_to_message is None:
|
if update.message.reply_to_message is None:
|
||||||
bot.send_message(update.message.chat.id, f"⚠ Non hai specificato cosa aggiungere al diario! Puoi rispondere `/diario@royalgamesbot` al messaggio che vuoi salvare nel diario oppure scrivere `/diario@royalgamesbot <messaggio>` per aggiungere quel messaggio nel diario.\n"
|
bot.send_message(update.message.chat.id, f"⚠ Non hai specificato cosa aggiungere al diario! Puoi rispondere `/diario@royalgamesbot` al messaggio che vuoi salvare nel diario oppure scrivere `/diario@royalgamesbot <messaggio>` per aggiungere quel messaggio nel diario.", parse_mode="Markdown")
|
||||||
f"Se l'hai fatto, e continua a comparire questo errore, allora Telegram è stupido e non mi vuole far vedere il messaggio a cui hai risposto.", parse_mode="Markdown")
|
|
||||||
return
|
return
|
||||||
text = update.message.reply_to_message.text
|
text = update.message.reply_to_message.text
|
||||||
author = session.query(db.Telegram).filter_by(telegram_id=update.message.reply_to_message.from_user.id).one_or_none()
|
author = session.query(db.Telegram).filter_by(telegram_id=update.message.reply_to_message.from_user.id).one_or_none()
|
||||||
|
@ -258,7 +257,7 @@ def cmd_vote(bot: Bot, update: Update):
|
||||||
parse_mode="HTML")
|
parse_mode="HTML")
|
||||||
vote.message_id = message.message_id
|
vote.message_id = message.message_id
|
||||||
session.commit()
|
session.commit()
|
||||||
except Exception as e:
|
except Exception:
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
session.close()
|
session.close()
|
||||||
|
|
|
@ -17,6 +17,7 @@ main_channel =
|
||||||
afk_timer = 10
|
afk_timer = 10
|
||||||
radio_messages_enabled = True
|
radio_messages_enabled = True
|
||||||
radio_messages_every = 5
|
radio_messages_every = 5
|
||||||
|
activityreport_sample_time = 600
|
||||||
|
|
||||||
[Telegram]
|
[Telegram]
|
||||||
bot_token =
|
bot_token =
|
||||||
|
@ -38,6 +39,3 @@ client_id =
|
||||||
client_secret =
|
client_secret =
|
||||||
username =
|
username =
|
||||||
password =
|
password =
|
||||||
|
|
||||||
[Events]
|
|
||||||
halloween = 0
|
|
Loading…
Reference in a new issue