patched crash from negative points

This commit is contained in:
2024-03-24 07:09:28 +01:00
parent 76dd868163
commit 7ea62870d0

@ -229,7 +229,8 @@ impl GameState {
6 => 11, 6 => 11,
_ => 14, _ => 14,
}; };
player.points -= negative; // check if the absolute value of negative is less than the points
player.points = player.points.saturating_sub(negative);
if player.floor.start == 1 { if player.floor.start == 1 {
self.starting_player = player_name.clone(); self.starting_player = player_name.clone();