aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2019-02-20 22:53:56 +0100
committerJokler <jokler.contact@gmail.com>2019-02-20 22:53:56 +0100
commit869b22874fb64935bff0f25f9a5dacb18b9d1548 (patch)
tree2d10766fdde754c56b58f23d932cc2d8660d1c5c /src/main.rs
parent731b236f09bf9a2e94ced66e9974091d95cf94f7 (diff)
downloadfrippy-869b22874fb64935bff0f25f9a5dacb18b9d1548.tar.gz
frippy-869b22874fb64935bff0f25f9a5dacb18b9d1548.zip
Plugins: Replace Emoji with Unicode
The new plugin adds a command which allows checking the name and some info of a character.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 03f3c7e..ef24e4d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -29,7 +29,7 @@ use std::sync::Arc;
use glob::glob;
use irc::client::reactor::IrcReactor;
-use frippy::plugins::emoji::Emoji;
+use frippy::plugins::unicode::Unicode;
use frippy::plugins::factoid::Factoid;
use frippy::plugins::help::Help;
use frippy::plugins::keepnick::KeepNick;
@@ -108,7 +108,7 @@ fn run() -> Result<(), Error> {
bot.add_plugin(Help::new());
bot.add_plugin(UrlTitles::new(1024));
bot.add_plugin(Sed::new(60));
- bot.add_plugin(Emoji::new());
+ bot.add_plugin(Unicode::new());
bot.add_plugin(KeepNick::new());
#[cfg(feature = "mysql")]