From 509bff0d79012ce450ee365a482fde2a16a244de Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 11 Sep 2020 13:03:25 -0500 Subject: [PATCH] Added healing healthsource logic to beam system. --- common/src/sys/beam.rs | 5 ++--- server/src/events/entity_manipulation.rs | 10 +++------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/common/src/sys/beam.rs b/common/src/sys/beam.rs index f03f25337f..4d8a5e44a4 100644 --- a/common/src/sys/beam.rs +++ b/common/src/sys/beam.rs @@ -190,13 +190,12 @@ impl<'a> System<'a> for Sys { } if damage.healthchange != 0.0 { + let cause = if is_heal { HealthSource::Healing { by: Some(*uid) } } else { HealthSource::Attack { by: *uid } }; server_emitter.emit(ServerEvent::Damage { uid: *uid_b, change: HealthChange { amount: damage.healthchange as i32, - cause: HealthSource::Attack { - by: beam.owner.unwrap_or(*uid), - }, + cause, }, }); if is_damage && beam.lifesteal_eff > 0.0 { diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 235564abd8..44eb6f0804 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -533,15 +533,11 @@ pub fn handle_explosion( damage.modify_damage(block, loadout); } - if damage.healthchange < 0.0 { + if damage.healthchange != 0.0 { + let cause = if is_heal { HealthSource::Healing { by: owner } } else { HealthSource::Explosion { owner } }; stats_b.health.change_by(HealthChange { amount: damage.healthchange as i32, - cause: HealthSource::Explosion { owner }, - }); - } else if damage.healthchange > 0.0 { - stats_b.health.change_by(HealthChange { - amount: damage.healthchange as i32, - cause: HealthSource::Healing { by: owner }, + cause, }); } }