Added ability for shop to have horny

+ clippy + fmt
This commit is contained in:
Joey Hines 2023-07-07 19:54:37 -06:00
parent d076318e4a
commit f93ee21269
Signed by: joeyahines
GPG Key ID: 995E531F7A569DDB

View File

@ -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?;