15 lines
397 B
C#
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);
|
|
}
|
|
}
|