diff --git a/src/gamesystem.rs b/src/gamesystem.rs index 241a59b..dc67d9e 100644 --- a/src/gamesystem.rs +++ b/src/gamesystem.rs @@ -165,6 +165,5 @@ pub fn get_attribute_rolls( _ => {} } } - console::log(format!("{}, {}", failed_attempts, remaining_points)); return (str, dex, con, int, wis, cha); } diff --git a/src/raws/rawmaster.rs b/src/raws/rawmaster.rs index 950562c..c292e72 100644 --- a/src/raws/rawmaster.rs +++ b/src/raws/rawmaster.rs @@ -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); }