diff options
-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 |