diff options
| author | Fuwn <[email protected]> | 2020-10-27 13:46:50 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-10-27 13:46:50 -0700 |
| commit | 7df153d4dd8279d1187deb8ad7cd90813cae153b (patch) | |
| tree | 2a5258b4eff8c79b0e349eaa15154b0b6ea1d1d9 /src/core/handler.rs | |
| parent | chore: change workflow name and step name (diff) | |
| download | dep-core-next-7df153d4dd8279d1187deb8ad7cd90813cae153b.tar.xz dep-core-next-7df153d4dd8279d1187deb8ad7cd90813cae153b.zip | |
feat, annotate, chore (desc)
feat:
- feature request
- github organization
- change up the `uwu!` response
- add parse and send goodbye to utils
- add goodbye stuff to config model
- add aliases to ignore remove and list
- add alias to russian roulette
annotate:
- framework.rs
chore:
- change command group names
- add discriminator to ready log
- add period to fern log output
- change up order of server info command + add stuff metnioned above
other:
- comment out config goodbye
Diffstat (limited to 'src/core/handler.rs')
| -rw-r--r-- | src/core/handler.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/handler.rs b/src/core/handler.rs index 5f499bf..782cc6c 100644 --- a/src/core/handler.rs +++ b/src/core/handler.rs @@ -67,7 +67,7 @@ impl EventHandler for Handler { }); } else { failed!(API_FAIL); } }); - info!("Logged in as {}", ready.user.name); + info!("Logged in as {}#{}.", ready.user.name, ready.user.discriminator); } fn cached(&self, ctx: Context, guilds: Vec<GuildId>) { @@ -102,7 +102,7 @@ impl EventHandler for Handler { fn message(&self, _: Context, message: Message) { if message.content.contains("uwu!") { - check_error!(message.channel_id.say("Uwufier has been re-branded ! Please use the new prefix; `w.`!")); + check_error!(message.channel_id.say("Uwufier has been re-branded! However, due to Discord verified bot limitations, we are still awaiting for our username change to go through, until then, meet Wisp, your all-in-one Discord companion. For future reference, please use the new prefix; `w.` !")); } if message.mention_everyone { @@ -254,6 +254,7 @@ impl EventHandler for Handler { .colour(*colours::MAIN) .thumbnail(user_face) .description(format!("**Old:** {}\n**New:** {}", user_data.username, user_tag)) + // )).expect("Failed to send Message"); )).expect("Failed to send Message"); } } else { failed!(DB_GUILD_FAIL); } |