diff --git a/2.5DHero/2.5DHero/Network/GameJolt/GTS/GTSMainScreen.vb b/2.5DHero/2.5DHero/Network/GameJolt/GTS/GTSMainScreen.vb index e761988a1..32e7ad8b2 100644 --- a/2.5DHero/2.5DHero/Network/GameJolt/GTS/GTSMainScreen.vb +++ b/2.5DHero/2.5DHero/Network/GameJolt/GTS/GTSMainScreen.vb @@ -71,7 +71,7 @@ Private Sub GetVersionData() Dim w As New System.Net.WebClient - Dim data As String = w.DownloadString("") ' CLASSIFIED + Dim data As String = w.DownloadString("https://raw.githubusercontent.com/P3D-Legacy/P3D-Legacy-Data/master/GTSVersion.dat") Dim lines() As String = data.SplitAtNewline() GTSVersion = lines(0) diff --git a/2.5DHero/2.5DHero/Network/GameJolt/LogInScreen.vb b/2.5DHero/2.5DHero/Network/GameJolt/LogInScreen.vb index 1facf2415..88772b1bc 100644 --- a/2.5DHero/2.5DHero/Network/GameJolt/LogInScreen.vb +++ b/2.5DHero/2.5DHero/Network/GameJolt/LogInScreen.vb @@ -436,8 +436,8 @@ Namespace GameJolt Private Sub DownloadBanList() Try Dim w As New System.Net.WebClient - BanList = w.DownloadString("") ' CLASSIFIED - BanReasons = w.DownloadString("") ' CLASSIFIED + BanList = w.DownloadString("https://raw.githubusercontent.com/P3D-Legacy/P3D-Legacy-Data/master/banlist.dat") + BanReasons = w.DownloadString("https://raw.githubusercontent.com/P3D-Legacy/P3D-Legacy-Data/master/banreasons.dat") Logger.Log(Logger.LogTypes.Message, "Retrieved ban list data.") Me.DownloadedBanList = True Catch ex As Exception diff --git a/2.5DHero/2.5DHero/Network/MysteryEventScreen.vb b/2.5DHero/2.5DHero/Network/MysteryEventScreen.vb index 3300e0466..3cf452d6c 100644 --- a/2.5DHero/2.5DHero/Network/MysteryEventScreen.vb +++ b/2.5DHero/2.5DHero/Network/MysteryEventScreen.vb @@ -77,7 +77,7 @@ Try Dim w As New System.Net.WebClient - Dim data() As String = w.DownloadString("").SplitAtNewline() ' CLASSIFIED + Dim data() As String = w.DownloadString("https://raw.githubusercontent.com/P3D-Legacy/P3D-Legacy-Data/master/Events.txt").SplitAtNewline() For Each line As String In data If line.Contains("|") = True Then