Compare commits
No commits in common. "3c1c95aa3a854ca7cd4f293f58d3eed853e71e95" and "8225efe9cc096b94c2dc175031bccc1f6089a40c" have entirely different histories.
3c1c95aa3a
...
8225efe9cc
|
@ -169,6 +169,6 @@ def announce_lazy_reminder(bot, remindee, reminder, delta=None):
|
||||||
@module.hook(True)
|
@module.hook(True)
|
||||||
def lazy_remind(bot, trigger):
|
def lazy_remind(bot, trigger):
|
||||||
"""Lazy reminds only activate when the person speaks."""
|
"""Lazy reminds only activate when the person speaks."""
|
||||||
for remind in list(bot.memory['lazy_remind'].get(trigger.nick, [])):
|
for remind in bot.memory['lazy_remind'].get(trigger.nick, []):
|
||||||
bot.msg(remind)
|
bot.msg(remind)
|
||||||
bot.memory['lazy_remind'][trigger.nick].remove(remind)
|
bot.memory['lazy_remind'][trigger.nick].remove(remind)
|
||||||
|
|
|
@ -30,8 +30,8 @@ def get_puush_fname(bot, url):
|
||||||
bot.msg(f"[ \x0310puu.sh \x03] - \x0304{fname}")
|
bot.msg(f"[ \x0310puu.sh \x03] - \x0304{fname}")
|
||||||
|
|
||||||
|
|
||||||
@url_callback("youtube.com/watch")
|
@url_callback("youtube.com/")
|
||||||
@url_callback("youtu.be/watch")
|
@url_callback("youtu.be/")
|
||||||
def youtube_title(bot, url):
|
def youtube_title(bot, url):
|
||||||
"""
|
"""
|
||||||
Retrieve the title of the YouTube video and display it.
|
Retrieve the title of the YouTube video and display it.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user