mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Remove unnecessary == true
Former-commit-id: bb9df3870e2549b8e66b0cc8d2ece29e336f22e9
This commit is contained in:
parent
a41b642570
commit
7ca6be2d5b
@ -152,7 +152,7 @@ impl Client {
|
||||
if
|
||||
self.state.read_storage::<comp::phys::Pos>().get(self.player).is_some() &&
|
||||
self.state.read_storage::<comp::phys::Vel>().get(self.player).is_some() &&
|
||||
self.state.read_storage::<comp::phys::Dir>().get(self.player).is_some() == true
|
||||
self.state.read_storage::<comp::phys::Dir>().get(self.player).is_some()
|
||||
{
|
||||
// TODO: remove this
|
||||
const PLAYER_VELOCITY: f32 = 100.0;
|
||||
|
Loading…
Reference in New Issue
Block a user