Reduce player health

This commit is contained in:
Daniel Lynn 2021-07-08 22:53:41 -05:00
parent 65cde7d8ab
commit 27f1133b60

View File

@ -9,8 +9,8 @@ pub fn spawn_player(ecs: &mut World, pos: Point) {
glyph: to_cp437('@'),
},
Health {
current: 20,
max: 20,
current: 10,
max: 10,
},
Name("Player 1".to_string()),
));