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

fix scavraidend patch

This commit is contained in:
CWX 2024-12-26 20:22:02 +00:00
parent e499a9c3ca
commit fb33a0d1e0

View File

@ -13,7 +13,7 @@ namespace SPT.SinglePlayer.Patches.ScavMode
/// </summary>
public class GetProfileAtEndOfRaidPatch : ModulePatch
{
public static GClass1962 ProfileDescriptor { get; private set; }
public static GClass1991 ProfileDescriptor { get; private set; }
protected override MethodBase GetTargetMethod()
{
@ -23,7 +23,7 @@ namespace SPT.SinglePlayer.Patches.ScavMode
[PatchPrefix]
public static void PatchPrefix(LocalGame __instance)
{
ProfileDescriptor = new GClass1962(__instance.Profile_0, GClass1971.Instance);
ProfileDescriptor = new GClass1991(__instance.Profile_0, GClass2000.Instance);
}
}
/// <summary>