diff --git a/plugins/Utilities.py b/plugins/Utilities.py index ce53d2748..98b344f3b 100644 --- a/plugins/Utilities.py +++ b/plugins/Utilities.py @@ -46,6 +46,10 @@ def configure(onStart, afterConnect, advanced): onStart.append('load Utilities') class Utilities(callbacks.Privmsg): + def shrink(self, irc, msg, args): + text = privmsgs.getArgs(args) + irc.reply(msg, text[:450]) + def strjoin(self, irc, msg, args): " " sep = args.pop(0)