fish-station/Content.Server/Spreader/SpreadGroupUpdateRate.cs
Bixkitts 956e8b46dd
Fixed Kudzu Spread Falling Asleep After Containment (#18218)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2023-08-06 16:08:07 +10:00

7 lines
260 B
C#

namespace Content.Server.Spreader;
/// <summary>
/// Raised every tick to determine how many updates a particular spreading node group is allowed.
/// </summary>
[ByRefEvent]
public record struct SpreadGroupUpdateRate(string Name, int UpdatesPerSecond = 16);