mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Reviewer's suggested edit
This commit is contained in:
parent
7a5b7cb478
commit
d85473bccf
@ -393,7 +393,7 @@ impl<'a> Widget for Crafting<'a> {
|
|||||||
for (i, (item_def, amount)) in recipe.inputs.iter().enumerate() {
|
for (i, (item_def, amount)) in recipe.inputs.iter().enumerate() {
|
||||||
// Grey color for images and text if their amount is too low to craft the item
|
// Grey color for images and text if their amount is too low to craft the item
|
||||||
let item_count_in_inventory = self.inventory.item_count(item_def);
|
let item_count_in_inventory = self.inventory.item_count(item_def);
|
||||||
let col = if item_count_in_inventory >= u64::from(*amount) && *amount != 0 {
|
let col = if item_count_in_inventory >= u64::from(*amount.max(&1)) {
|
||||||
TEXT_COLOR
|
TEXT_COLOR
|
||||||
} else {
|
} else {
|
||||||
TEXT_DULL_RED_COLOR
|
TEXT_DULL_RED_COLOR
|
||||||
|
Loading…
Reference in New Issue
Block a user