Add config variable for whether censors share info

This commit is contained in:
Vecna 2024-05-24 17:34:37 -04:00
parent 9e8a0c8fca
commit 62bb11ed30
1 changed files with 2 additions and 0 deletions

View File

@ -17,4 +17,6 @@ pub struct State {
pub prob_user_is_censor: f64,
pub prob_user_submits_reports: f64,
pub probs_user_in_country: Vec<(String, f64)>,
// Do the censors talk to each other?
pub sharing: bool,
}