amethyst / amethyst/rustrogueliketutorial
Mistake in chapter 50
Ouverte
- Langage dominant
- Rust
- Étoiles
- 970
- Forks
- 166
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
In the gui.rs fix section the code is:
`let health = format!(" HP: {} / {} ", stats.hp, stats.max_hp);`
But that doesn't work anymore at that point. It should be:
`let health = format!(" HP: {} / {} ", stats.hit_points.current, stats.hit_points.max);`
As seen in the finished code.
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.