Browse Source

andy vs. clippy round 2

pull/47/head
andy 3 years ago
parent
commit
1eff61629a
  1. 6
      src/ship/items/inventory.rs

6
src/ship/items/inventory.rs

@ -256,10 +256,8 @@ impl InventoryItem {
Some((ArmorShopItem::unit_from_item(u).price() / 8) as u32) Some((ArmorShopItem::unit_from_item(u).price() / 8) as u32)
}, },
ItemDetail::Tool(t) => { ItemDetail::Tool(t) => {
if !matches!(t.tool, ToolType::PhotonDrop | ToolType::PhotonSphere | ToolType::PhotonCrystal) {
if t.is_rare_item() {
return Some(10u32)
}
if !matches!(t.tool, ToolType::PhotonDrop | ToolType::PhotonSphere | ToolType::PhotonCrystal) && t.is_rare_item() {
return Some(10u32)
} }
Some((ToolShopItem::tool_from_item(t).price() / 8) as u32) Some((ToolShopItem::tool_from_item(t).price() / 8) as u32)
}, },

Loading…
Cancel
Save