fix trainer files not properly completing the math for pokemon ID
This commit is contained in:
parent
0e32b45b6c
commit
21937ffcf9
|
@ -263,7 +263,7 @@ Public Class Trainer
|
|||
Dim PK As String = ScriptCommander.Parse(firstPart).ToString()
|
||||
Dim Level As Integer = ScriptConversion.ToInteger(ScriptCommander.Parse(secondPart))
|
||||
|
||||
Dim ID As Integer = CInt(PK.Split(CChar("_"))(0))
|
||||
Dim ID As Integer = ScriptConversion.ToInteger(PK.Split(CChar("_"))(0))
|
||||
Dim AD As String = ""
|
||||
|
||||
If PK.Contains(CChar("_")) Then
|
||||
|
|
Loading…
Reference in New Issue