Slightly re-nerf zombification speed (#37445)

Initial Commit
This commit is contained in:
UpAndLeaves 2025-10-08 14:57:55 +01:00 committed by Vanessa
parent 1b798a7ead
commit c00cae9b7d
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ public sealed partial class PendingZombieComponent : Component
{
DamageDict = new ()
{
{ "Poison", 0.4 },
{ "Poison", 0.3 },
}
};
@ -34,7 +34,7 @@ public sealed partial class PendingZombieComponent : Component
/// The amount of time left before the infected begins to take damage.
/// </summary>
[DataField("gracePeriod"), ViewVariables(VVAccess.ReadWrite)]
public TimeSpan GracePeriod = TimeSpan.Zero;
public TimeSpan GracePeriod = TimeSpan.FromMinutes(2);
/// <summary>
/// The minimum amount of time initial infected have before they start taking infection damage.