From 14cf272c8ed526951f34d2abfd140bb7fb1667b9 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Tue, 18 Jan 2022 14:39:49 +0200 Subject: [PATCH] Change equip_time CR weapon calculation --- common/src/combat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/combat.rs b/common/src/combat.rs index e341ea433f..8370fa5372 100644 --- a/common/src/combat.rs +++ b/common/src/combat.rs @@ -991,7 +991,7 @@ pub fn weapon_rating(item: &T, msm: &MaterialStatManifest) -> f32 { let crit_chance_rating = stats.crit_chance - 0.1; let range_rating = stats.range; let effect_rating = stats.effect_power - 1.0; - let equip_time_rating = 1.0 / stats.equip_time_secs; + let equip_time_rating = 0.5 - stats.equip_time_secs; let energy_efficiency_rating = stats.energy_efficiency; let buff_strength_rating = stats.buff_strength;