Fix clippy from rebase

This commit is contained in:
Sam 2023-03-21 20:23:46 -04:00
parent 1337525987
commit e5c9f92269
2 changed files with 7 additions and 6 deletions

View File

@ -636,6 +636,7 @@ pub mod tests {
BuffSource::Unknown, BuffSource::Unknown,
time, time,
None, None,
None,
) )
} }

View File

@ -151,7 +151,7 @@ impl<'a> System<'a> for Sys {
BuffSource::World, BuffSource::World,
*read_data.time, *read_data.time,
Some(&stat), Some(&stat),
Some(&health), Some(health),
)), )),
}); });
} }
@ -169,7 +169,7 @@ impl<'a> System<'a> for Sys {
BuffSource::World, BuffSource::World,
*read_data.time, *read_data.time,
Some(&stat), Some(&stat),
Some(&health), Some(health),
)), )),
}); });
} }
@ -187,7 +187,7 @@ impl<'a> System<'a> for Sys {
BuffSource::World, BuffSource::World,
*read_data.time, *read_data.time,
Some(&stat), Some(&stat),
Some(&health), Some(health),
)), )),
}); });
// When standing on IceSpike also apply Frozen // When standing on IceSpike also apply Frozen
@ -200,7 +200,7 @@ impl<'a> System<'a> for Sys {
BuffSource::World, BuffSource::World,
*read_data.time, *read_data.time,
Some(&stat), Some(&stat),
Some(&health), Some(health),
)), )),
}); });
} }
@ -221,7 +221,7 @@ impl<'a> System<'a> for Sys {
BuffSource::World, BuffSource::World,
*read_data.time, *read_data.time,
Some(&stat), Some(&stat),
Some(&health), Some(health),
)), )),
}); });
} else if matches!( } else if matches!(
@ -301,7 +301,7 @@ impl<'a> System<'a> for Sys {
buff.source, buff.source,
*read_data.time, *read_data.time,
Some(&stat), Some(&stat),
Some(&health), Some(health),
)), )),
}); });
} }