|
|
|
|
@ -46,7 +46,7 @@ impl EventHandler for Handler
|
|
|
|
|
|
|
|
|
|
async fn reaction_add(&self, ctx: Context, add_reaction: Reaction)
|
|
|
|
|
{
|
|
|
|
|
// println!("reaction_add event");
|
|
|
|
|
println!("reaction_add event");
|
|
|
|
|
//utils::Logger::log_message(ctx, &format!("reaction add event: {:#?}", add_reaction)).await;
|
|
|
|
|
// todo!()
|
|
|
|
|
|
|
|
|
|
@ -56,7 +56,7 @@ impl EventHandler for Handler
|
|
|
|
|
async fn reaction_remove(&self, ctx: Context, removed_reaction: Reaction)
|
|
|
|
|
{
|
|
|
|
|
println!("reaction_remove event");
|
|
|
|
|
utils::Logger::log_message(ctx, &format!("reaction removed event: {:#?}", removed_reaction)).await;
|
|
|
|
|
//utils::Logger::log_message(ctx, &format!("reaction removed event: {:#?}", removed_reaction)).await;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set a handler to be called on the `ready` event. This is called when a
|
|
|
|
|
|