diff --git a/Content.Shared/Tabletop/SharedTabletopSystem.cs b/Content.Shared/Tabletop/SharedTabletopSystem.cs index 8e2c51e287..a1e048a026 100644 --- a/Content.Shared/Tabletop/SharedTabletopSystem.cs +++ b/Content.Shared/Tabletop/SharedTabletopSystem.cs @@ -41,7 +41,7 @@ namespace Content.Shared.Tabletop return false; } - var alive = playerEntity.TryGetComponent(out var mob) && mob.IsAlive(); + var alive = playerEntity.TryGetComponent(out var mob) && mob.IsAlive(); var inRange = playerEntity.InRangeUnobstructed(table); return alive && inRange;