vim keys fix

This commit is contained in:
Llywelwyn 2023-07-10 10:21:54 +01:00
parent 491581c848
commit d41ef0f8dc
2 changed files with 6 additions and 3 deletions

View file

@ -54,7 +54,10 @@ pub fn delete_the_dead(ecs: &mut World) {
}
dead.push(entity)
}
Some(_) => log.entries.push(format!("YOU DIED!")),
Some(_) => {
// This is where the GameOver state will go eventully. But currently
// it's easier to just keep the game going for the sake of testing.
}
}
}
}