mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-08-06 08:08:52 +00:00
Add LBP3 live & presence URLS to be patched
This commit is contained in:
parent
91dfa33a7a
commit
93190416a0
1 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,8 @@ namespace LBPUnion.UnionPatcher {
|
||||||
private static readonly string[] ToBePatched = {
|
private static readonly string[] ToBePatched = {
|
||||||
"https://littlebigplanetps3.online.scee.com:10061/LITTLEBIGPLANETPS3_XML",
|
"https://littlebigplanetps3.online.scee.com:10061/LITTLEBIGPLANETPS3_XML",
|
||||||
"http://littlebigplanetps3.online.scee.com:10060/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) {
|
public static void PatchFile(string fileName, string serverUrl, string outputFileName) {
|
||||||
|
@ -34,7 +36,7 @@ namespace LBPUnion.UnionPatcher {
|
||||||
|
|
||||||
int offset = dataAsString.IndexOf(url, StringComparison.Ordinal);
|
int offset = dataAsString.IndexOf(url, StringComparison.Ordinal);
|
||||||
if(offset < 1) {
|
if(offset < 1) {
|
||||||
Console.WriteLine($"URL {url} not found!");
|
Console.WriteLine($"WARNING: URL {url} not found!");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue