30 bits per round

This commit is contained in:
Mashy
2019-11-13 11:02:14 +10:00
parent f5978e90bd
commit 9da45e1bee
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -318,12 +318,12 @@ impl Instance {
self.phase_end = self.time_control.vbox_phase_end();
let bits = match self.rounds.len() > 0 {
true => 12 + 6 * self.rounds.len(),
true => 30,
false => 0,
};
self.players.iter_mut().for_each(|p| {
p.vbox.balance_add(bits.into());
p.vbox.balance_add(bits);
p.set_ready(false);
p.vbox.fill();
});
+1 -1
View File
@@ -43,7 +43,7 @@ impl Vbox {
Vbox {
free: vec![vec![], vec![], vec![]],
bound: starting_items,
bits: 18,
bits: 30,
}
}