Skip to content

Commit

Permalink
fix featured card hole
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryntet committed Aug 7, 2024
1 parent 5b1b064 commit cdbe177
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion rust_controller/src/controller/coordinator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,12 @@ impl FlipUpVMixCoordinator {
);
let featured_hole = self.featured_hole;
let stats = self.make_stats();
let holes = self.focused_player().holes.clone();
let holes = self
.featured_card
.player(self.available_players())
.unwrap()
.holes
.clone();
let div = &self.leaderboard_division.clone();
let out = self
.focused_player_mut()
Expand Down

0 comments on commit cdbe177

Please sign in to comment.