Add LBP3 live & presence URLS to be patched

This commit is contained in:
jvyden 2021-10-25 00:51:53 -04:00
parent 91dfa33a7a
commit 93190416a0
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -7,6 +7,8 @@ namespace LBPUnion.UnionPatcher {
private static readonly string[] ToBePatched = {
"https://littlebigplanetps3.online.scee.com:10061/LITTLEBIGPLANETPS3_XML",
"http://littlebigplanetps3.online.scee.com:10060/LITTLEBIGPLANETPS3_XML",
"http://live.littlebigplanetps3.online.scee.com:10060/LITTLEBIGPLANETPS3_XML",
"http://presence.littlebigplanetps3.online.scee.com:10060/LITTLEBIGPLANETPS3_XML",
};
public static void PatchFile(string fileName, string serverUrl, string outputFileName) {
@ -34,7 +36,7 @@ namespace LBPUnion.UnionPatcher {
int offset = dataAsString.IndexOf(url, StringComparison.Ordinal);
if(offset < 1) {
Console.WriteLine($"URL {url} not found!");
Console.WriteLine($"WARNING: URL {url} not found!");
continue;
}