mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using SPT.PrePatch;
|
|
using SPT.Reflection.Patching;
|
|
using EFT;
|
|
using HarmonyLib;
|
|
|
|
namespace SPT.Custom.Patches
|
|
{
|
|
public class AddSptBotSettingsPatch : ModulePatch
|
|
{
|
|
protected override MethodBase GetTargetMethod()
|
|
{
|
|
return AccessTools.Method(typeof(BotSettingsRepoClass), nameof(BotSettingsRepoClass.Init));
|
|
}
|
|
|
|
[PatchPrefix]
|
|
private static void PatchPrefix(ref Dictionary<WildSpawnType, BotSettingsValuesClass> ___dictionary_0)
|
|
{
|
|
if (___dictionary_0.ContainsKey((WildSpawnType)SPTBotsPrePatcher.sptUsecValue))
|
|
{
|
|
return;
|
|
}
|
|
|
|
___dictionary_0.Add((WildSpawnType)SPTBotsPrePatcher.sptUsecValue, new BotSettingsValuesClass(false, false, false, EPlayerSide.Savage.ToStringNoBox()));
|
|
___dictionary_0.Add((WildSpawnType)SPTBotsPrePatcher.sptBearValue, new BotSettingsValuesClass(false, false, false, EPlayerSide.Savage.ToStringNoBox()));
|
|
}
|
|
}
|
|
} |