From f93ee2126915138cb21bc5dd5793e6f4831360c6 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Fri, 7 Jul 2023 19:54:37 -0600 Subject: [PATCH] Added ability for shop to have horny + clippy + fmt --- src/discord/shop.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/discord/shop.rs b/src/discord/shop.rs index 0f1e589..17fcca4 100644 --- a/src/discord/shop.rs +++ b/src/discord/shop.rs @@ -299,6 +299,11 @@ pub async fn restock_shop(ctx: &Context) -> Result<(), CommandError> { thread_rng().gen_range(0..10), None, ); + bot_user.inventory.give_item( + ItemType::LicenseToBeHorny, + thread_rng().gen_range(0..25), + None, + ); loop { let mut dir = tokio::fs::read_dir(&global_data.cfg.nft_path).await?;