Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
www committed Nov 4, 2024
1 parent 495235a commit a9789e0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/rust.bot_modules.core/src/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub(crate) async fn event_listener(ectx: &EventHandlerContext) -> Result<(), sil
.title("Thank you for adding AntiRaid")
.description(r#"While you have successfully added AntiRaid to your server, it won't do much until you take some time to configure it to your needs.
Please check out both the `User Guide` and the `Website` to tailor AntiRaid to the needs of your server!
Please check out both the `User Guide` and the `Website` to tailor AntiRaid to the needs of your server! And, if you need help, feel free to join our `Support Server`!
"#)
)
.components(
Expand All @@ -36,7 +36,11 @@ Please check out both the `User Guide` and the `Website` to tailor AntiRaid to t
serenity::all::CreateButton::new_link(
config::CONFIG.sites.frontend.clone(),
)
.label("Website")
.label("Website"),
serenity::all::CreateButton::new_link(
config::CONFIG.meta.support_server_invite.clone(),
)
.label("Support Server")
]
)
]
Expand Down

0 comments on commit a9789e0

Please sign in to comment.