diff options
Diffstat (limited to 'lib/plugins/say.ex')
-rw-r--r-- | lib/plugins/say.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/say.ex b/lib/plugins/say.ex index 3df3ac8..114ca64 100644 --- a/lib/plugins/say.ex +++ b/lib/plugins/say.ex @@ -62,7 +62,7 @@ defmodule Nola.Plugins.Say do chan2 = String.replace(chan, "#", "") if (target == "#{net}/#{chan}" || target == "#{net}/#{chan2}" || target == chan || target == chan2) do if with_nick? do - IRC.send_message_as(account, net, chan, text) + Nola.Irc.send_message_as(account, net, chan, text) else Nola.Irc.Connection.broadcast_message(net, chan, text) end |