first commit
This commit is contained in:
14
NitroxPatcher/Patches/Dynamic/ArmsController_Start_Patch.cs
Normal file
14
NitroxPatcher/Patches/Dynamic/ArmsController_Start_Patch.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user