diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 03:27:32 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:42 +0100 |
commit | a2e3a9e6fcab2e32e0ca208d8242e8d6812a67df (patch) | |
tree | 4dd596a3a8a9025137d7723107d794ec9e329d06 /lib/plugins/tell.ex | |
parent | Finish moving things from IRC. to Nola., refs T77 (diff) |
Rename IRC.{Message,Trigger} to Nola.{Message,Trigger}, refs T77.
Diffstat (limited to 'lib/plugins/tell.ex')
-rw-r--r-- | lib/plugins/tell.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/tell.ex b/lib/plugins/tell.ex index 43da9e7..bc1f24e 100644 --- a/lib/plugins/tell.ex +++ b/lib/plugins/tell.ex @@ -33,7 +33,7 @@ defmodule Nola.Plugins.Tell do {:noreply, state} end - def handle_info({:irc, :trigger, "tell", m = %IRC.Message{trigger: %IRC.Trigger{type: :bang, args: [target | message]}}}, state) do + def handle_info({:irc, :trigger, "tell", m = %Nola.Message{trigger: %Nola.Trigger{type: :bang, args: [target | message]}}}, state) do do_tell(state, m, target, message) {:noreply, state} end |