0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
2024-05-21 19:10:17 +01:00

36 lines
1.2 KiB
C#

using System;
using SPT.Reflection.Patching;
using EFT;
using System.Reflection;
using System.Threading.Tasks;
using HarmonyLib;
namespace SPT.SinglePlayer.Patches.Healing
{
public class PlayerPatch : ModulePatch
{
protected override MethodBase GetTargetMethod()
{
return AccessTools.Method(typeof(Player), nameof(Player.Init));
}
[PatchPostfix]
private static async void PatchPostfix(Task __result, Player __instance, Profile profile)
{
await __result;
if (profile?.Id.Equals(Common.Http.RequestHandler.SessionId, StringComparison.InvariantCultureIgnoreCase) ?? false)
{
Logger.LogDebug($"Hooking up health listener to profile: {profile.Id}");
var listener = Utils.Healing.HealthListener.Instance;
listener.Init(__instance.HealthController, true);
Logger.LogDebug($"HealthController instance: {__instance.HealthController.GetHashCode()}");
}
else
{
Logger.LogDebug($"Skipped on HealthController instance: {__instance.HealthController.GetHashCode()} for profile id: {profile?.Id}");
}
}
}
}