removes some debug logs

This commit is contained in:
Llywelwyn 2023-08-21 11:24:36 +01:00
parent 33ce208252
commit 469d83994e
2 changed files with 0 additions and 3 deletions

View file

@ -165,6 +165,5 @@ pub fn get_attribute_rolls(
_ => {}
}
}
console::log(format!("{}, {}", failed_attempts, remaining_points));
return (str, dex, con, int, wis, cha);
}

View file

@ -854,10 +854,8 @@ pub fn ancestry_reaction(this_ancestry: Ancestry, other_ancestry: Ancestry, raws
} else {
let this_ancestry = get_ancestry_string(this_ancestry);
let other_ancestry = get_ancestry_string(other_ancestry);
console::log(format!("{:?}", this_ancestry));
if raws.ancestry_index.contains_key(this_ancestry) {
let mine = &raws.ancestry_index[this_ancestry];
console::log(format!("{:?}", mine));
if mine.contains(other_ancestry) {
return Some(Reaction::Ignore);
}