first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System.Reflection;
|
||||
using NitroxClient.Communication.Abstract;
|
||||
using NitroxModel.Helper;
|
||||
using NitroxModel.Packets;
|
||||
|
||||
namespace NitroxPatcher.Patches.Dynamic;
|
||||
|
||||
/// <summary>
|
||||
/// Replaces "fastgrow" command by the Nitrox server command implementation
|
||||
/// </summary>
|
||||
public sealed partial class NoCostConsoleCommand_OnConsoleCommand_fastgrow_Patch : NitroxPatch, IDynamicPatch
|
||||
{
|
||||
public static readonly MethodInfo TARGET_METHOD = Reflect.Method((NoCostConsoleCommand t) => t.OnConsoleCommand_fastgrow(default));
|
||||
|
||||
public static bool Prefix()
|
||||
{
|
||||
bool newValue = !NoCostConsoleCommand.main.fastGrowCheat; // toggle is basic functionning
|
||||
Resolve<IPacketSender>().Send(new ServerCommand($"fast grow {newValue}"));
|
||||
return false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user