Fix warning

This commit is contained in:
Antonio Scandurra 2023-11-07 14:31:17 +01:00
parent 268be71d8e
commit 9f2e6be1b3

View file

@ -23,11 +23,12 @@ pub struct PlayerColors(pub Vec<PlayerColor>);
impl PlayerColors {
pub fn local(&self) -> PlayerColor {
// todo!("use a valid color");
*self.0.first().unwrap()
}
pub fn absent(&self) -> PlayerColor {
todo!("use a valid color");
// todo!("use a valid color");
*self.0.last().unwrap()
}