diff --git a/CHANGELOG.md b/CHANGELOG.md index 86e12adcb2..506c61a84a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `SnowGlitter` experimental shader. - Crafting recipe for Cloverleaf glider. - Burning Potion that applies the Burning effect to the user +- Precision ### Changed @@ -71,6 +72,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Medium and large potions from all loot tables - LoD pop-in effect - Removed Dullahans from halloween event +- Random critical hits ### Fixed - Fixed wild roaming cyclop loot table to not drop the quarry key diff --git a/common/src/bin/csv_import/main.rs b/common/src/bin/csv_import/main.rs index ccf784bdd2..4bbb546e74 100644 --- a/common/src/bin/csv_import/main.rs +++ b/common/src/bin/csv_import/main.rs @@ -148,7 +148,7 @@ fn armor_stats() -> Result<(), Box> { None }; - let precision_power = if let Some(precison_power_raw) = + let precision_power = if let Some(precision_power_raw) = record.get(headers["Precision Power"]) { let value = precision_power_raw.parse().unwrap();