Files
Nitrox/NitroxPatcher/Patches/Dynamic/ArmsController_Start_Patch.cs
2025-07-06 00:23:46 +02:00

15 lines
397 B
C#

using System.Reflection;
using NitroxModel.Helper;
namespace NitroxPatcher.Patches.Dynamic;
public sealed partial class ArmsController_Start_Patch : NitroxPatch, IDynamicPatch
{
public static readonly MethodInfo TARGET_METHOD = Reflect.Method((ArmsController t) => t.Start());
public static void Postfix(ArmsController __instance)
{
__instance.Reconfigure(null);
}
}