rust/hedgewars-server/src/core/anteroom.rs
changeset 15938 ce47259d5c86
parent 15521 1fcce8feace4
child 15989 fb389df02e3e
equal deleted inserted replaced
15937:e514ceb5e7d6 15938:ce47259d5c86
    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         Self {
    36         Self {
    36             ban_ips: vec![],
    37             ban_ips: vec![],
    37             ban_timeouts: vec![],
    38             ban_timeouts: vec![],
    38             ban_reasons: vec![],
    39             ban_reasons: vec![],
    39         }
    40         }