Skip to content

Commit

Permalink
docs: Add Display/Debug TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
Ablesius committed Nov 7, 2024
1 parent 529506a commit 2610b2d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/character.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,10 @@ impl Character {
Some(self.damage.aggravated)
)
);
// TODO println!("Hunger: {:?}", self.hunger);
// println!("Blood Potency: {:?}", self.blood_potency);
// println!("Hunger: {:?}", self.hunger);
// TODO note: when using :? we print the Debug print, which gives `BloodPotency(1)` or similar;
// we'll need to impl a Display that only prints the value or something that reads more nicely
println!("Blood Potency: {:?}", self.blood_potency);
}

//TODO do we need this rather?
Expand Down

0 comments on commit 2610b2d

Please sign in to comment.