mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-07-23 13:55:38 +02:00
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…
x
Reference in New Issue
Block a user