From ef3dcf8acc925f880c44a6e7c59a4def795ae8a9 Mon Sep 17 00:00:00 2001 From: Lux Aliaga Date: Thu, 3 Nov 2022 21:15:00 -0300 Subject: [PATCH] inv: Emoji consistency The slot switching action had a different emoji for confirming the command was successful compared to other actions, so I switched it for the green checkmark. --- src/inv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inv.rs b/src/inv.rs index 2ffa006..48f9f46 100644 --- a/src/inv.rs +++ b/src/inv.rs @@ -187,7 +187,7 @@ pub fn switch(message: bool) -> Result<()> { })?; if message { - println!("🎉 {}", "Switched inventory slots!".green()); + println!("✅ {}", "Switched inventory slots!".green()); } Ok(()) }