summaryrefslogtreecommitdiff
path: root/lib/plugins/say.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plugins/say.ex')
-rw-r--r--lib/plugins/say.ex6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/plugins/say.ex b/lib/plugins/say.ex
index 91ffacc..e036bd4 100644
--- a/lib/plugins/say.ex
+++ b/lib/plugins/say.ex
@@ -19,9 +19,9 @@ defmodule Nola.Plugins.Say do
def init([]) do
regopts = [type: __MODULE__]
- {:ok, _} = Registry.register(IRC.PubSub, "trigger:say", regopts)
- {:ok, _} = Registry.register(IRC.PubSub, "trigger:asay", regopts)
- {:ok, _} = Registry.register(IRC.PubSub, "messages:private", regopts)
+ {:ok, _} = Registry.register(Nola.PubSub, "trigger:say", regopts)
+ {:ok, _} = Registry.register(Nola.PubSub, "trigger:asay", regopts)
+ {:ok, _} = Registry.register(Nola.PubSub, "messages:private", regopts)
{:ok, nil}
end