diff --git a/CShocker/CShocker.csproj b/CShocker/CShocker.csproj index 12b0195..63d0b98 100644 --- a/CShocker/CShocker.csproj +++ b/CShocker/CShocker.csproj @@ -7,7 +7,7 @@ Glax https://github.com/C9Glax/CShocker git - 1.1.2 + 1.1.3 diff --git a/CShocker/Ranges/RandomIntegerRange.cs b/CShocker/Ranges/RandomIntegerRange.cs index 89800e5..b8c8f93 100644 --- a/CShocker/Ranges/RandomIntegerRange.cs +++ b/CShocker/Ranges/RandomIntegerRange.cs @@ -14,7 +14,7 @@ public abstract class RandomIntegerRange this._range = range; } - internal int GetRandomRangeValue() + public int GetRandomRangeValue() { return Random.Shared.Next(_range.Min, _range.Max); }