From e22ddb0385cbfbbfec6cbcd75c38d09fd6c7aecd Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Thu, 24 Jun 2021 20:38:02 +0300 Subject: [PATCH] Improve Dismantle UX - Change `Any {}` to `Any {} item` so for example when you want to dismantle something into linen, you will see `Any linen item` which points you that you need to get some item which is made from linen, and not some generic linen. --- voxygen/src/hud/crafting.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/hud/crafting.rs b/voxygen/src/hud/crafting.rs index 2013b20ab8..c635fc90e0 100644 --- a/voxygen/src/hud/crafting.rs +++ b/voxygen/src/hud/crafting.rs @@ -880,7 +880,7 @@ impl<'a> Widget for Crafting<'a> { // Ingredients let name = match recipe_input { RecipeInput::Item(_) => item_def.name().to_string(), - RecipeInput::Tag(tag) => format!("Any {}", tag.name()), + RecipeInput::Tag(tag) => format!("Any {} item", tag.name()), }; let input = format!( "{}x {} ({})",