amethyst / amethyst/rustrogueliketutorial
Mistake in chapter 50
Abierto
- Lenguaje dominante
- Rust
- Estrellas
- 970
- Forks
- 166
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.