0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 07:50:46 -05:00
modules/project/SPT.Core/SPTCorePlugin.cs

43 lines
1.2 KiB
C#
Raw Normal View History

2023-03-03 18:52:31 +00:00
using System;
2024-05-21 19:10:17 +01:00
using SPT.Common;
using SPT.Core.Patches;
2023-03-03 18:52:31 +00:00
using BepInEx;
2024-05-21 19:10:17 +01:00
namespace SPT.Core
2023-03-03 18:52:31 +00:00
{
2024-05-21 19:10:17 +01:00
[BepInPlugin("com.SPT.core", "SPT.Core", SPTPluginInfo.PLUGIN_VERSION)]
class SPTCorePlugin : BaseUnityPlugin
2023-03-03 18:52:31 +00:00
{
// Temp static logger field, remove along with plugin whitelisting before release
internal static BepInEx.Logging.ManualLogSource _logger;
public void Awake()
2023-03-03 18:52:31 +00:00
{
_logger = Logger;
2024-05-21 17:44:27 +01:00
Logger.LogInfo("Loading: SPT.Core");
2023-03-03 18:52:31 +00:00
try
{
new ConsistencySinglePatch().Enable();
new ConsistencyMultiPatch().Enable();
new GameValidationPatch().Enable();
2023-03-03 18:52:31 +00:00
new BattlEyePatch().Enable();
new SslCertificatePatch().Enable();
new UnityWebRequestPatch().Enable();
new WebSocketPatch().Enable();
new TransportPrefixPatch().Enable();
}
catch (Exception ex)
{
Logger.LogError($"A PATCH IN {GetType().Name} FAILED. SUBSEQUENT PATCHES HAVE NOT LOADED");
2023-03-03 18:52:31 +00:00
Logger.LogError($"{GetType().Name}: {ex}");
2023-03-03 18:52:31 +00:00
throw;
}
2024-05-21 17:44:27 +01:00
Logger.LogInfo("Completed: SPT.Core");
2023-03-03 18:52:31 +00:00
}
}
}