mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Fixed accidental hardcode.
This commit is contained in:
parent
663c591a89
commit
40deaf3075
@ -119,10 +119,10 @@ namespace Launcher_Editor
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine("Writing \"{0}\" and updating offset to 0x{1:X}.", "80", freeSpaceOffset);
|
Console.WriteLine("Writing \"{0}\" and updating offset to 0x{1:X}.", patchPortString, freeSpaceOffset);
|
||||||
WriteNewString(exeDataBoot, patchPortStringOffset, "80", freeSpaceOffset);
|
WriteNewString(exeDataBoot, patchPortStringOffset, patchPortString, freeSpaceOffset);
|
||||||
Console.WriteLine("Writing \"{0}\" and updating offset to 0x{1:X}.", "127.0.0.1", freeSpaceOffset + 0x20);
|
Console.WriteLine("Writing \"{0}\" and updating offset to 0x{1:X}.", patchUrlString, freeSpaceOffset + 0x20);
|
||||||
WriteNewString(exeDataBoot, patchUrlStringOffset, "127.0.0.1", freeSpaceOffset + 0x20);
|
WriteNewString(exeDataBoot, patchUrlStringOffset, patchUrlString, freeSpaceOffset + 0x20);
|
||||||
|
|
||||||
Console.WriteLine("---Editing FFXIVLOGIN.EXE---");
|
Console.WriteLine("---Editing FFXIVLOGIN.EXE---");
|
||||||
loginUrlOffset = PrintEncodedSearch(exeDataLogin, 0x739, ORIGINAL_PATCH_LOGIN_STRING);
|
loginUrlOffset = PrintEncodedSearch(exeDataLogin, 0x739, ORIGINAL_PATCH_LOGIN_STRING);
|
||||||
|
Loading…
Reference in New Issue
Block a user