ace/Source/ACE.Common/DDDConfiguration.cs
Ty Conner 12e569652f
Switch to System.Text.Json (#4002)
* Switch to System.Text.Json

Removed Newtonsoft.Json and DouglasCrockford.JsMin

* Update GameConfiguration.cs

* Update MasterConfiguration.cs

* Update ThreadConfiguration.cs

* Update StarterSpell.cs

* Update StarterGearFactory.cs

* Update Program_Setup.cs

* Update LifestonedConverter.cs

* Update Program_Setup.cs

* Update Program_Setup.cs

* Update ACE.Adaptor

Shift JSON weenie [de]serialization to System.Text.Json

* Update LifestonedConverter.cs

* Update StarterGearFactory.cs

* Update ACE.Server.csproj

* Update ACE.Server.Tests.csproj

* Update Program.cs

* Update MySqlConfiguration.cs

* Update DDDConfiguration.cs

* Update ModContainer.cs

* Update ModManager.cs

* Update ModMetadata.cs

* Update ModMetadata.cs
2023-12-21 14:15:38 -05:00

18 lines
603 B
C#

namespace ACE.Common
{
/// <summary>
/// This section configures handling of client DAT patching from server's DAT files
/// </summary>
public class DDDConfiguration
{
/// <summary>
/// Allow server to patch client DAT files using server's DAT files via DDDManager
/// </summary>
public bool EnableDATPatching { get; set; } = false;
/// <summary>
/// Upon server startup, precache all DAT files that would be sent as compressed data
/// </summary>
public bool PrecacheCompressedDATFiles { get; set; } = false;
}
}