Revert servers.txt Change
All checks were successful
CI / Build (ARM64) (push) Successful in 18m15s
CI / Build (AMD64) (push) Successful in 19m6s
CI / Build (ARMHF) (push) Successful in 12m18s
CI / Test (AMD64, Server) (push) Successful in 2m29s
CI / Test (ARM64, Client) (push) Successful in 3m26s
CI / Build Example Mods (push) Successful in 1m10s
CI / Test (ARM64, Server) (push) Successful in 26s
CI / Test (AMD64, Client) (push) Successful in 5m4s
CI / Test (ARMHF, Client) (push) Successful in 3m38s
CI / Test (ARMHF, Server) (push) Successful in 38s
CI / Release (push) Has been skipped

This commit is contained in:
TheBrokenRail 2024-06-16 00:04:42 -04:00
parent 74ee75e12f
commit 36fe263ede
3 changed files with 4 additions and 3 deletions

View File

@ -33,7 +33,6 @@
* Add Splash Text To Start Screen
* `overwrite_calls` Now Scans VTables
* Unify Server/Client Builds
* Use `|` For Separator In `servers.txt` Instead Of `:`
**2.5.3**
* Add `Replace Block Highlight With Outline` Feature Flag (Enabled By Default)

View File

@ -72,7 +72,9 @@ void bootstrap() {
DEBUG("Binary Directory: %s", binary_directory.c_str());
// Copy SDK
copy_sdk(binary_directory, true);
if (!reborn_is_server()) {
copy_sdk(binary_directory, true);
}
// Set MCPI_REBORN_ASSETS_PATH
{

View File

@ -55,7 +55,7 @@ static void load_servers() {
// Parse
std::string address;
std::string port_str;
size_t separator_pos = line.find_last_of('|');
size_t separator_pos = line.find_last_of(':');
if (separator_pos == std::string::npos) {
port_str = "19132";
address = line;