diff --git a/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs index d24f1142..d9e4f112 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs @@ -105,7 +105,7 @@ public class RandomUtil(ISptLogger _logger, ICloner _cloner) { chancePercent = Math.Clamp(chancePercent ?? 0, 0D, 100D); - return GetInt(0, 100) <= chancePercent; + return GetInt(1, 100) <= chancePercent; } ///