fix: Fixes old haven and new haven starting cities (#1097)

Adds OldHaven cities for shards that use clients older than 6.x
This commit is contained in:
Kamron Batman 2022-06-29 01:23:57 -07:00 • committed by GitHub
parent f4cbe82d17
commit 2d00f6d27a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1604 additions and 1609 deletions

View file

@ -276,7 +276,7 @@ public static class ServerConfiguration
isPre60000 = ServerConfigurationPrompts.GetIsClientPre6000();
if (isPre60000 == true)
{
SetSetting("maps.enablePre6000Trammel", true.ToString());
SetSetting("maps.enablePre6000Trammel", true);
}
}

View file

@ -31,7 +31,7 @@ namespace Server
public FileStream DataStream { get; }
public BinaryReader IndexReader { get; }
private static bool Pre6000ClientSupport;
public static bool Pre6000ClientSupport { get; private set; }
public static void Configure()
{