diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-01-30 01:36:26 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-01-30 01:36:26 +0000 |
commit | 05656f15627617ef35bb73c94a021d789d393e7b (patch) | |
tree | bbe86e2b86f1a6375935d73bdd4423f82855c90c /lib/rbot/ircbot.rb | |
parent | 1cdc30f08ef77d2719ad60b26def738cb1fd5872 (diff) |
Whitespace cleanup
Diffstat (limited to 'lib/rbot/ircbot.rb')
-rw-r--r-- | lib/rbot/ircbot.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 641eff29..9ebed447 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -904,17 +904,17 @@ class IrcBot # attempt to change bot's nick to +name+ def nickchg(name) - sendq "NICK #{name}" + sendq "NICK #{name}" end # changing mode def mode(channel, mode, target) - sendq "MODE #{channel} #{mode} #{target}", channel, 2 + sendq "MODE #{channel} #{mode} #{target}", channel, 2 end # kicking a user def kick(channel, user, msg) - sendq "KICK #{channel} #{user} :#{msg}", channel, 2 + sendq "KICK #{channel} #{user} :#{msg}", channel, 2 end # m:: message asking for help |