From 1271b5ff9abc0b353f24b0053e7fee4019446e00 Mon Sep 17 00:00:00 2001 From: danielkenji83 Date: Sat, 17 Feb 2024 19:56:56 -0300 Subject: [PATCH] Remove block_strength stat from main.rs --- common/src/bin/csv_import/main.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/common/src/bin/csv_import/main.rs b/common/src/bin/csv_import/main.rs index 03fd502084..83be0d513c 100644 --- a/common/src/bin/csv_import/main.rs +++ b/common/src/bin/csv_import/main.rs @@ -370,15 +370,6 @@ fn weapon_stats() -> Result<(), Box> { .parse() .expect(&format!("Not a f32? {:?}", item.item_definition_id())); - let block_strength: f32 = record - .get(headers["Block Strength"]) - .expect(&format!( - "Error unwrapping block strength for {:?}", - item.item_definition_id() - )) - .parse() - .expect(&format!("Not a f32? {:?}", item.item_definition_id())); - let tool = comp::item::tool::Tool::new(kind, hands, Stats { equip_time_secs, power, @@ -387,7 +378,6 @@ fn weapon_stats() -> Result<(), Box> { range, energy_efficiency, buff_strength, - block_strength, }); let quality = if let Some(quality_raw) = record.get(headers["Quality"]) {