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

Fixed BetaLogoPatch

This commit is contained in:
Dev 2024-10-13 11:17:12 +01:00
parent 9dd527cd7d
commit 15a72cfeec
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace SPT.Custom.Patches
ParameterInfo[] parameters = method.GetParameters(); ParameterInfo[] parameters = method.GetParameters();
return method.ReturnType == typeof(Task) return method.ReturnType == typeof(Task)
&& parameters.Length == 5 && parameters.Length == 4
&& parameters[0].ParameterType == typeof(Profile) && parameters[0].ParameterType == typeof(Profile)
&& parameters[1].ParameterType == typeof(ProfileStatusClass); && parameters[1].ParameterType == typeof(ProfileStatusClass);
} }

View File

@ -58,7 +58,7 @@ namespace SPT.Custom.Utils
{ {
new BetaLogoPatch().Enable(); new BetaLogoPatch().Enable();
new BetaLogoPatch2().Enable(); new BetaLogoPatch2().Enable();
new BetaLogoPatch3().Enable(); //new BetaLogoPatch3().Enable();
} }
disallowedPlugins = Chainloader.PluginInfos.Values disallowedPlugins = Chainloader.PluginInfos.Values