Skip to content

Commit

Permalink
Update EntityHealthBarOverlay.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrodinger71 authored May 31, 2024
1 parent 5a21fdc commit 661f95b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Content.Client/Overlays/EntityHealthBarOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,8 @@ protected override void Draw(in OverlayDrawArgs args)
continue;
}

GetStatusIconsEvent @event = new GetStatusIconsEvent();
if (@event.InContainer || @event.HasStealthComponent)
{
if (_entManager.TryGetComponent<StealthComponent>(uid, out var comp) && comp.Enabled)

Check failure on line 79 in Content.Client/Overlays/EntityHealthBarOverlay.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'StealthComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 79 in Content.Client/Overlays/EntityHealthBarOverlay.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'StealthComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 79 in Content.Client/Overlays/EntityHealthBarOverlay.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type or namespace name 'StealthComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 79 in Content.Client/Overlays/EntityHealthBarOverlay.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type or namespace name 'StealthComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 79 in Content.Client/Overlays/EntityHealthBarOverlay.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'StealthComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 79 in Content.Client/Overlays/EntityHealthBarOverlay.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'StealthComponent' could not be found (are you missing a using directive or an assembly reference?)
{
continue;
}

Expand Down

0 comments on commit 661f95b

Please sign in to comment.