Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Apr 23, 2024
1 parent 00240f3 commit 452e1be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/game_support.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{Context, Error};
pub async fn game_support(ctx: Context<'_>,
#[description = "Game Name"] game_name: Option<String>) -> Result<(), Error> {
// String containing default response
let mut message = "https://docs.getwhisky.app/game-support/";
let mut message = String::from("https://docs.getwhisky.app/game-support/");

match game_name {
Some(name) => {
Expand Down

0 comments on commit 452e1be

Please sign in to comment.