mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fix clippy from rebase
This commit is contained in:
parent
1337525987
commit
e5c9f92269
@ -636,6 +636,7 @@ pub mod tests {
|
||||
BuffSource::Unknown,
|
||||
time,
|
||||
None,
|
||||
None,
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -151,7 +151,7 @@ impl<'a> System<'a> for Sys {
|
||||
BuffSource::World,
|
||||
*read_data.time,
|
||||
Some(&stat),
|
||||
Some(&health),
|
||||
Some(health),
|
||||
)),
|
||||
});
|
||||
}
|
||||
@ -169,7 +169,7 @@ impl<'a> System<'a> for Sys {
|
||||
BuffSource::World,
|
||||
*read_data.time,
|
||||
Some(&stat),
|
||||
Some(&health),
|
||||
Some(health),
|
||||
)),
|
||||
});
|
||||
}
|
||||
@ -187,7 +187,7 @@ impl<'a> System<'a> for Sys {
|
||||
BuffSource::World,
|
||||
*read_data.time,
|
||||
Some(&stat),
|
||||
Some(&health),
|
||||
Some(health),
|
||||
)),
|
||||
});
|
||||
// When standing on IceSpike also apply Frozen
|
||||
@ -200,7 +200,7 @@ impl<'a> System<'a> for Sys {
|
||||
BuffSource::World,
|
||||
*read_data.time,
|
||||
Some(&stat),
|
||||
Some(&health),
|
||||
Some(health),
|
||||
)),
|
||||
});
|
||||
}
|
||||
@ -221,7 +221,7 @@ impl<'a> System<'a> for Sys {
|
||||
BuffSource::World,
|
||||
*read_data.time,
|
||||
Some(&stat),
|
||||
Some(&health),
|
||||
Some(health),
|
||||
)),
|
||||
});
|
||||
} else if matches!(
|
||||
@ -301,7 +301,7 @@ impl<'a> System<'a> for Sys {
|
||||
buff.source,
|
||||
*read_data.time,
|
||||
Some(&stat),
|
||||
Some(&health),
|
||||
Some(health),
|
||||
)),
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user