Skip to content

Commit

Permalink
whoops. found a copy-paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
c650 committed Dec 31, 2016
1 parent 4a31a99 commit d9a2811
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ To run the bot, information must be specified like it is in the [sample config](
---
# Compiling

First, run `./configure`. If you aren't using a Debian-based linux, the dependencies are **libcurl** and **openSSL/libssl** and you must install them manually. If you intend to compile from source, the `*-dev` packages, as well as a C++ compiler, are also needed.
First, run `./configure.sh`. If you aren't using a Debian-based linux, the dependencies are **libcurl** and **openSSL/libssl** and you must install them manually. If you intend to compile from source, the `*-dev` packages, as well as a C++ compiler, are also needed.

A 64-bit linux binary is on the releases page. For any other architecture or OS, please do the following:

Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/include/plugins.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ namespace Plugins {

if (p.content.length() > 5) {
if ( cmd == "@kick" ) {
p.owner->kick(p.channel, p.content.substr(6));p.owner->kick(p.channel, p.content.substr(6));
p.owner->kick(p.channel, p.content.substr(6));
} else if ( cmd == "@join" ) {
p.owner->join_channel( p.content.substr(6 , p.content.find(" ", 6) - 6) );
} else if ( cmd == "@part" ) {
Expand Down

0 comments on commit d9a2811

Please sign in to comment.