Zombie Fixes and Tweaks (#9940)

This commit is contained in:
Nemanja
2022-07-26 20:35:34 -04:00
committed by GitHub
parent e795e5b5e1
commit 6276bda4f4
7 changed files with 47 additions and 19 deletions

View File

@@ -5,5 +5,11 @@ namespace Content.Server.Atmos.Miasma
/// Tracking component for stuff that has started to rot.
/// </summary>
public sealed class RottingComponent : Component
{}
{
/// <summary>
/// Whether or not the rotting should deal damage
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public bool DealDamage = true;
}
}