7b6f1eb9ad
* Fingers crossed this will fix the mod loading issue for configs * Renamed classes and documentation for clarity * Remove some extra traces of the old PreSptLoader * Renamed interface for clarity and updated docs * Re-introduced PreSptModLoad for now --------- Co-authored-by: Alex <clodanSPT@hotmail.com>
18 lines
601 B
C#
18 lines
601 B
C#
namespace SPTarkov.Server.Core.DI;
|
|
|
|
public static class OnLoadOrder
|
|
{
|
|
public const int Watermark = 0;
|
|
public const int PreSptModLoader = 1000;
|
|
public const int Database = 2000;
|
|
public const int GameCallbacks = 3000;
|
|
public const int PostDBModLoader = 4000;
|
|
public const int TraderRegistration = 5000;
|
|
public const int HandbookCallbacks = 6000;
|
|
public const int SaveCallbacks = 7000;
|
|
public const int TraderCallbacks = 8000;
|
|
public const int PresetCallbacks = 9000;
|
|
public const int RagfairCallbacks = 10000;
|
|
public const int PostSptModLoader = 11000;
|
|
}
|