rust/hedgewars-server/src/core/anteroom.rs
changeset 15989 fb389df02e3e
parent 15938 ce47259d5c86
equal deleted inserted replaced
15988:0b2e0a7d0431 15989:fb389df02e3e
    30     ban_reasons: Vec<String>,
    30     ban_reasons: Vec<String>,
    31 }
    31 }
    32 
    32 
    33 impl BanCollection {
    33 impl BanCollection {
    34     fn new() -> Self {
    34     fn new() -> Self {
    35         todo!("add nick bans");
    35         //todo!("add nick bans");
    36         Self {
    36         Self {
    37             ban_ips: vec![],
    37             ban_ips: vec![],
    38             ban_timeouts: vec![],
    38             ban_timeouts: vec![],
    39             ban_reasons: vec![],
    39             ban_reasons: vec![],
    40         }
    40         }