mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 08:50:43 -05:00
21 lines
525 B
C#
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}");
|
|
}
|
|
}
|
|
} |