Sfoglia il codice sorgente

分数计算公式调整2。

skyffire 1 anno fa
parent
commit
b2129be58d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/rank.rs

+ 1 - 1
src/rank.rs

@@ -81,7 +81,7 @@ pub fn generate_rank_by_indicator_map(indicator_map: &MutexGuard<HashMap<String,
 
 
         // msv_score计算规则
         // msv_score计算规则
         let mut msv_score = if msv_abs_total > Decimal::ZERO {
         let mut msv_score = if msv_abs_total > Decimal::ZERO {
-            effective_count * (epr_total / msv_abs_total) * SIXTY * msv_abs_max
+            effective_count * (epr_total / msv_abs_total) * msv_abs_max
         } else {
         } else {
             Decimal::ZERO
             Decimal::ZERO
         };
         };