rust/chat_sanitizer/src/part_repeat.rs
author Wuzzy <Wuzzy2@mail.ru>
Tue, 26 May 2020 23:02:49 +0200
changeset 15582 6a38a30e772a
parent 14503 831ecafd74c6
permissions -rw-r--r--
Fix wrong team health bar height after calling SetClanColor If you called SetClanColor on a team with a name that had a letter with a descender in it, then called SetClanColor on it, the height of the team bar is 1 pixel less than it should be because it was copied from the name texture.

use crate::{MessageChecker, Severity};

struct PartRepeatChecker {}

impl<T> MessageChecker<T> for PartRepeatChecker {
    fn check(&self, player_id: T, message: &str) -> Severity {
        Severity::Pass
    }
}