]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Slightly re-nerf zombification speed (#37445)
authorUpAndLeaves <92269094+Alpha-Two@users.noreply.github.com>
Wed, 8 Oct 2025 13:57:55 +0000 (14:57 +0100)
committerGitHub <noreply@github.com>
Wed, 8 Oct 2025 13:57:55 +0000 (13:57 +0000)
Initial Commit

Content.Shared/Zombies/PendingZombieComponent.cs

index b199edeb005293428185f736036ab0063cdd5599..310f731e07a0063145c4fd330e5b2bd5427e6a58 100644 (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.