diff --git a/client/src/constants.jsx b/client/src/constants.jsx index bf370e14..5a7a24a3 100644 --- a/client/src/constants.jsx +++ b/client/src/constants.jsx @@ -39,7 +39,7 @@ module.exports = { Colours - 1b
Skills - 2b
Specs - 3b
- At the beginning of each round you receive 18 bits increasing by 6 bits per round.

, + At the beginning of each round you receive 30 bits.

, }, ready: { item: 'READY', diff --git a/server/src/instance.rs b/server/src/instance.rs index 5dc79652..16f42e8a 100644 --- a/server/src/instance.rs +++ b/server/src/instance.rs @@ -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(); }); diff --git a/server/src/vbox.rs b/server/src/vbox.rs index 3488b14d..6b84a187 100644 --- a/server/src/vbox.rs +++ b/server/src/vbox.rs @@ -43,7 +43,7 @@ impl Vbox { Vbox { free: vec![vec![], vec![], vec![]], bound: starting_items, - bits: 18, + bits: 30, } }