diff --git a/assets/common/abilities/sceptre/healingaura.ron b/assets/common/abilities/sceptre/healingaura.ron index 23465bed42..f68e67bfbf 100644 --- a/assets/common/abilities/sceptre/healingaura.ron +++ b/assets/common/abilities/sceptre/healingaura.ron @@ -5,7 +5,7 @@ BasicAura( targets: InGroup, aura: ( kind: Regeneration, - strength: 2.0, + strength: 0.2, duration: Some(10.0), category: Magical, ), diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index ca12dfa5d3..440a4efea2 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -599,7 +599,7 @@ pub fn handle_land_on_ground(server: &Server, entity: EcsEntity, vel: Vec3) .copied() .unwrap_or_default(); let impact_energy = mass.0 * vel.z.powi(2) / 2.0; - let falldmg = impact_energy / 100.0; + let falldmg = impact_energy / 1000.0; let inventories = ecs.read_storage::(); let stats = ecs.read_storage::();