Changelog

This commit is contained in:
Sam 2023-11-14 18:10:51 -05:00
parent 49756ac37c
commit fb3d0208b9
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -148,7 +148,7 @@ fn armor_stats() -> Result<(), Box<dyn Error>> {
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();