Skip to content

Commit

Permalink
rm debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
LaihoE committed Dec 9, 2023
1 parent e9d5712 commit f83eead
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/parser/src/entities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,7 @@ impl<'a> ParserThread<'a> {
}
pub fn debug_inspect(result: &Variant, field: &Field) {
if let Field::Value(v) = field {
if v.full_name.contains("CFlashbangProjectile")
&& !v.full_name.contains("Component")
&& !v.full_name.contains("m_vec")
{
println!("{:?} {:?}", v.full_name, result);
}
println!("{:?} {:?}", v.full_name, result);
}
}
pub fn insert_field(entity: &mut Entity, result: Variant, field_info: Option<FieldInfo>) {
Expand Down

0 comments on commit f83eead

Please sign in to comment.