50% шанс для выпадения антагов донатгоям (#144)

This commit is contained in:
Jabak
2024-10-19 15:02:02 +03:00
committed by GitHub
parent 17ca3dbaae
commit 6b97d91384

View File

@@ -28,6 +28,7 @@ using Robust.Shared.Random;
using Content.Server._Miracle.GulagSystem; using Content.Server._Miracle.GulagSystem;
using Content.Server._White.Sponsors; using Content.Server._White.Sponsors;
using Content.Server.Inventory; using Content.Server.Inventory;
using FastAccessors;
using Robust.Shared.Utility; using Robust.Shared.Utility;
namespace Content.Server.Antag; namespace Content.Server.Antag;
@@ -463,10 +464,10 @@ public sealed partial class AntagSelectionSystem : GameRuleSystem<AntagSelection
var antagChance = info.AntagChance; var antagChance = info.AntagChance;
// Ensure antagChance is within 0-100 range // Ensure antagChance is within 0-100 range
antagChance = Math.Clamp(antagChance, 0, 100); antagChance = Math.Clamp(antagChance, 0, 50);
// Convert clamped antagChance from 0-100 range to 0-1 range // Convert clamped antagChance from 0-100 range to 0-1 range
return antagChance / 100f; return antagChance / 50f;
} }
} }