fix action node factory

This commit is contained in:
Yunfan Li
2023-11-10 20:10:03 +08:00
parent 7063e5e00b
commit 748801b10b
3 changed files with 9 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ float ExpectedGroupDpsValue::Calculate()
float gs_modifier = (float)mixedGearScore / basic_gs - 1;
gs_modifier = gs_modifier * 3 + 1;
if (gs_modifier < 0.5) gs_modifier = 0.5;
if (gs_modifier < 0.75) gs_modifier = 0.75;
if (gs_modifier > 4) gs_modifier = 4;
return dps_num * basic_dps * gs_modifier;