Fixed Critical Hit factor
This commit is contained in:
parent
5fd3e09d06
commit
1fd51be895
|
@ -1485,12 +1485,12 @@
|
||||||
Mod1 = BRN * RL * TVT * SR * FF
|
Mod1 = BRN * RL * TVT * SR * FF
|
||||||
|
|
||||||
'CH
|
'CH
|
||||||
Dim CH As Integer = 1
|
Dim CH As Single = 1.0F
|
||||||
If Critical = True Then
|
If Critical = True Then
|
||||||
If p.Ability.Name.ToLower() = "sniper" Then
|
If p.Ability.Name.ToLower() = "sniper" Then
|
||||||
CH = 3
|
CH = 2.25
|
||||||
Else
|
Else
|
||||||
CH = 2
|
CH = 1.5
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue