0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 01:50:45 -05:00

Updated some classes to be public

This commit is contained in:
Dev 2024-08-01 21:01:25 +01:00
parent 73e8ef2cee
commit 5d2237092b
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ namespace SPT.Custom.Patches
* BotOwner doesn't call SetOff on the CalledData object when a bot is disposed, this can result * BotOwner doesn't call SetOff on the CalledData object when a bot is disposed, this can result
* in bots that are no longer alive having their `OnEnemyAdd` method called * in bots that are no longer alive having their `OnEnemyAdd` method called
*/ */
internal class BotOwnerDisposePatch : ModulePatch public class BotOwnerDisposePatch : ModulePatch
{ {
protected override MethodBase GetTargetMethod() protected override MethodBase GetTargetMethod()
{ {

View File

@ -8,7 +8,7 @@ namespace SPT.Custom.Patches
/// <summary> /// <summary>
/// Goal: patch removes the current bot from its own enemy list - occurs when adding bots type to its enemy array in difficulty settings /// Goal: patch removes the current bot from its own enemy list - occurs when adding bots type to its enemy array in difficulty settings
/// </summary> /// </summary>
internal class BotSelfEnemyPatch : ModulePatch public class BotSelfEnemyPatch : ModulePatch
{ {
protected override MethodBase GetTargetMethod() protected override MethodBase GetTargetMethod()
{ {

View File

@ -12,7 +12,7 @@ using System.Reflection;
namespace SPT.Debugging.Patches namespace SPT.Debugging.Patches
{ {
internal class ExfilDumper : ModulePatch public class ExfilDumper : ModulePatch
{ {
public static string DumpFolder = Path.Combine(Environment.CurrentDirectory, "Dumps"); public static string DumpFolder = Path.Combine(Environment.CurrentDirectory, "Dumps");