Fixed some strange crash related to online sprites in PvP battles

This commit is contained in:
CaptainSegis 2017-08-28 19:02:13 -05:00
parent b5f4bd1218
commit b1f8004ad4
1 changed files with 4 additions and 3 deletions

View File

@ -1571,9 +1571,10 @@ nextIndex:
''' </summary> ''' </summary>
Private Sub DownloadOnlineSprites() Private Sub DownloadOnlineSprites()
If Core.Player.IsGameJoltSave = True Then If Core.Player.IsGameJoltSave = True Then
Dim t As New Threading.Thread(AddressOf DownloadSprites) 'Dim t As New Threading.Thread(AddressOf DownloadSprites)
t.IsBackground = True 't.IsBackground = True
t.Start() 't.Start()
DownloadSprites()
End If End If
End Sub End Sub