this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: these goobers in my server again

isabel d535bfaa b3bf9f68

+5
+5
src/event_handler/starboard.rs
··· 57 57 .message(ctx, reaction.message_id) 58 58 .await?; 59 59 60 + // Don't allow starring bot's starboard messages 61 + if message.author.bot && reaction.channel_id.get() == starboard_channel_id { 62 + return Ok(()); 63 + } 64 + 60 65 // Count star reactions 61 66 let star_count = message 62 67 .reactions