diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 73acb787e3..21767e747a 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -662,6 +662,11 @@ pub fn handle_respawn(server: &Server, entity: EcsEntity) { .write_storage::() .get_mut(entity) .map(|mut health| health.revive()); + state + .ecs() + .write_storage::() + .get_mut(entity) + .map(|mut combo| combo.reset()); state .ecs() .write_storage::()