summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2015-03-09 21:33:18 +0100
committerAlex Legler <alex@a3li.li>2015-03-09 21:33:18 +0100
commitc2d7249b139eb52e4805c5e185ba034cba66312a (patch)
treee962a0be2136d297cfc209a32aace01f8279d93e
parentAlso adapt actual usage of the plugin (diff)
downloadudp2irc-c2d7249b139eb52e4805c5e185ba034cba66312a.tar.gz
udp2irc-c2d7249b139eb52e4805c5e185ba034cba66312a.tar.bz2
udp2irc-c2d7249b139eb52e4805c5e185ba034cba66312a.zip
Fix variable name
-rw-r--r--udp2irc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/udp2irc.rb b/udp2irc.rb
index 5fc7635..6ad3724 100644
--- a/udp2irc.rb
+++ b/udp2irc.rb
@@ -12,7 +12,7 @@ bot = Cinch::Bot.new do
c.nick = IRC_NICK
c.user = IRC_USER
c.password = IRC_PASS
- c.realname = IRC_RELNAME
+ c.realname = IRC_REALNAME
c.plugins.plugins = [MessagePlugin]
end
end