Fixed Critical Hit factor

This commit is contained in:
Capt_Segis 2016-09-14 00:23:06 -05:00 committed by GitHub
parent 5fd3e09d06
commit 1fd51be895
1 changed files with 3 additions and 3 deletions

View File

@ -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