diff --git a/README.md b/README.md index 81d30d7..f8ea81f 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/src/Plugins/include/plugins.hpp b/src/Plugins/include/plugins.hpp index 3736f73..f6fc419 100644 --- a/src/Plugins/include/plugins.hpp +++ b/src/Plugins/include/plugins.hpp @@ -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" ) {