mirror of
https://gitlab.com/veloren/veloren
synced 2026-08-16 16:26:07 -04:00
Merge branch 'shandley/fix-sfx' into 'master'
Fix run SFX See merge request veloren/veloren!880
This commit is contained in:
commit
4fdf6896ab
1 changed files with 6 additions and 9 deletions
|
|
@ -98,17 +98,14 @@ impl MovementEventMapper {
|
|||
Some(Self::get_volume_for_body_type(body)),
|
||||
));
|
||||
|
||||
// Set the new previous entity state
|
||||
state.event = mapped_event;
|
||||
state.time = Instant::now();
|
||||
state.weapon_drawn = Self::weapon_drawn(character);
|
||||
state.on_ground = physics.on_ground;
|
||||
} else {
|
||||
// If we don't dispatch the event, store this data as we can use it to determine
|
||||
// the next event
|
||||
state.event = mapped_event;
|
||||
state.on_ground = physics.on_ground;
|
||||
}
|
||||
|
||||
// update state to determine the next event. We only record the time (above) if
|
||||
// it was dispatched
|
||||
state.event = mapped_event;
|
||||
state.weapon_drawn = Self::weapon_drawn(character);
|
||||
state.on_ground = physics.on_ground;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue