Skip to content

Commit

Permalink
Fix config parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
marsolk committed May 22, 2024
1 parent bbf56c3 commit 4741a03
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/patch_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1166,11 +1166,7 @@ impl<'de> Deserialize<'de> for SuitDamageReduction {
}
}

deserializer.deserialize_enum(
"SuitDamageReduction",
&["Default", "Progressive", "Additive"],
SuitDamageReductionVisitor,
)
deserializer.deserialize_any(SuitDamageReductionVisitor)
}
}

Expand Down

0 comments on commit 4741a03

Please sign in to comment.