diff --git a/src/voting.rs b/src/voting.rs index a43b663a392e6d2b2f6aea18ab94d123d3124e6d..a652e41db445786ef5bfb1b968714230c3d9c6d2 100644 --- a/src/voting.rs +++ b/src/voting.rs @@ -230,19 +230,19 @@ fn update_motion( let for_strength = for_votes as f32 + (if has_tiebreaker(motion_info.votes.get(config::FOR_VOTE).unwrap()) { - 0.5 + 0.25 } else { 0.0 }); let against_strength = against_votes as f32 + (if has_tiebreaker(motion_info.votes.get(config::AGAINST_VOTE).unwrap()) { - 0.5 + 0.25 } else { 0.0 }); let abstain_strength = abstain_votes as f32 + (if has_tiebreaker(motion_info.votes.get(config::ABSTAIN_VOTE).unwrap()) { - 0.5 + 0.25 } else { 0.0 });