0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 08:30:45 -05:00
modules/project/SPT.Debugging/Patches/DataHandlerDebugPatch.cs

21 lines
524 B
C#

using System;
using System.Reflection;
using SPT.Reflection.Patching;
using HarmonyLib;
namespace SPT.Debugging.Patches
{
public class DataHandlerDebugPatch : ModulePatch
{
protected override MethodBase GetTargetMethod()
{
return AccessTools.Method(typeof(DataHandler), nameof(DataHandler.method_5));
}
[PatchPostfix]
public static void PatchPrefix(ref string __result)
{
Console.WriteLine($"response json: ${__result}");
}
}
}