reemove test field

This commit is contained in:
ntr 2018-12-18 15:18:57 +11:00
parent 7424472ddb
commit c5d7a72fdc

View File

@ -98,7 +98,6 @@ pub struct Cryp {
pub effects: Vec<CrypEffect>, pub effects: Vec<CrypEffect>,
pub name: String, pub name: String,
pub ko_logged: bool, pub ko_logged: bool,
pub bless: bool,
} }
fn check_lvl(lvl: u8) -> u8 { fn check_lvl(lvl: u8) -> u8 {
@ -122,7 +121,6 @@ impl Cryp {
effects: vec![], effects: vec![],
name: String::new(), name: String::new(),
ko_logged: false, ko_logged: false,
bless: true,
}; };
} }