Revert "Adds blinding + blindfolds (#8688)" (#9689)

This reverts commit 7a7ab5e8c1.
This commit is contained in:
Moony
2022-07-13 16:50:35 -05:00
committed by GitHub
parent ef6d0344de
commit a655891a8d
21 changed files with 1 additions and 305 deletions

View File

@@ -2,7 +2,6 @@ using System.Linq;
using Content.Shared.DragDrop;
using Content.Shared.Interaction;
using Content.Shared.MobState.Components;
using Content.Shared.Eye.Blinding;
using Content.Shared.MobState.EntitySystems;
using JetBrains.Annotations;
using Robust.Shared.Containers;
@@ -99,7 +98,7 @@ namespace Content.Shared.Examine
{
if (MobStateSystem.IsDead(examiner, mobState))
return DeadExamineRange;
else if (MobStateSystem.IsCritical(examiner, mobState) || (TryComp<BlindableComponent>(examiner, out var blind) && blind.Sources > 0))
else if (MobStateSystem.IsCritical(examiner, mobState))
return CritExamineRange;
}
return ExamineRange;