Remove extraneous IO.inspect calls

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-07-17 21:43:48 -07:00
parent 109cd67b37
commit 9fac85cc9a

View File

@@ -120,7 +120,7 @@ defmodule Omnibot.Contrib.Markov do
train(channel, nick, msg)
# Maybe send user a message
if IO.inspect(:rand.uniform()) < IO.inspect(reply_chance(channel, nick)) do
if :rand.uniform() < reply_chance(channel, nick) do
do_markov_message(irc, channel, nick, nick)
end
end