0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 08:10:45 -05:00
modules/project/SPT.Debugging/Patches/DataHandlerDebugPatch.cs
2024-05-21 19:10:17 +01:00

21 lines
525 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]
private static void PatchPrefix(ref string __result)
{
Console.WriteLine($"response json: ${__result}");
}
}
}