From 359bfcd9dae38e5e6e487f9c773144ee26af06a5 Mon Sep 17 00:00:00 2001
From: James Lu <GLolol@overdrivenetworks.com>
Date: Mon, 7 Mar 2016 21:37:08 -0800
Subject: [PATCH] bots: map 'msg' command to 'say' too

---
 plugins/bots.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/plugins/bots.py b/plugins/bots.py
index 90127e8..b3738ef 100644
--- a/plugins/bots.py
+++ b/plugins/bots.py
@@ -220,3 +220,4 @@ def msg(irc, source, args):
 
     irc.proto.message(sourceuid, real_target, text)
     irc.callHooks([sourceuid, 'PYLINK_BOTSPLUGIN_MSG', {'target': real_target, 'text': text, 'parse_as': 'PRIVMSG'}])
+utils.add_cmd(msg, 'say')