diff --git a/CShocker/Shockers/Abstract/Shocker.cs b/CShocker/Shockers/Abstract/Shocker.cs index 66cd277..b01b6f4 100644 --- a/CShocker/Shockers/Abstract/Shocker.cs +++ b/CShocker/Shockers/Abstract/Shocker.cs @@ -9,7 +9,7 @@ public abstract class Shocker protected readonly AShockerSettings ShockerSettings; protected readonly ILogger? Logger; - internal void Control(ControlAction action, string? shockerId = null, int? intensity = null, int? duration = null) + public void Control(ControlAction action, string? shockerId = null, int? intensity = null, int? duration = null) { int i = intensity ?? ShockerSettings.Intensity.GetRandomRangeValue(); int d = duration ?? ShockerSettings.Duration.GetRandomRangeValue();