summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2023-10-14 21:09:01 -0400
committerDavid Gay <eapoems@riseup.net>2023-10-14 21:09:01 -0400
commit214f4a53e7c6841d6e082c3f8f52660e12b1f41e (patch)
tree92fc850a4370b31cbf464c32ab759d2958c9244b
parent761877d3160cebd312f24971c0f5119b80cfc783 (diff)
cargo fmt
-rw-r--r--src/main.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 1470811..87868d4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -39,9 +39,13 @@ fn main() {
npc.race.unwrap(),
npc.class.unwrap().name,
ability_scores.get_score(AbilityScore::Strength).unwrap(),
- ability_scores.get_score(AbilityScore::Intelligence).unwrap(),
+ ability_scores
+ .get_score(AbilityScore::Intelligence)
+ .unwrap(),
ability_scores.get_score(AbilityScore::Wisdom).unwrap(),
- ability_scores.get_score(AbilityScore::Constitution).unwrap(),
+ ability_scores
+ .get_score(AbilityScore::Constitution)
+ .unwrap(),
ability_scores.get_score(AbilityScore::Dexterity).unwrap(),
ability_scores.get_score(AbilityScore::Charisma).unwrap()
);