From 15c5d5cf659b9c2372c7524d1e7552c6827431f4 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 14 Sep 2021 22:51:59 +0200 Subject: [PATCH] Fix compile on chess --- Content.Shared/Tabletop/SharedTabletopSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;