Allow Knockdown "Knockback" to go above 100%

This commit is contained in:
secretagentjr 2023-07-18 18:06:15 -07:00
parent 0a8d4bb38c
commit b2d0d28946

View File

@ -1191,8 +1191,8 @@ simulated function float ApplyEffect(name Type, float Value, float Progress)
}
break;
case 'KnockDown':
Modifiers[7] = FMin(1.f + (Value*Progress),2.f);
return (Modifiers[7]-1.f);
Modifiers[7] = 1.f + (Value*Progress);
break;
case 'Welder':
Modifiers[8] = 1.f + (Value*Progress);
break;