Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Fix a bad (new-frontiers-14#2242)
Browse files Browse the repository at this point in the history
  • Loading branch information
GreaseMonk authored Oct 15, 2024
1 parent 14c18cf commit 6a02d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Client/Nyanotrasen/Mail/MailSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected override void OnAppearanceChange(EntityUid uid, MailComponent componen
if (args.Sprite == null)
return;

if (_appearance.TryGetData(uid, MailVisuals.JobIcon, out string job) ||
if (!_appearance.TryGetData(uid, MailVisuals.JobIcon, out string job) ||
!_prototypeManager.TryIndex<JobIconPrototype>(job, out var icon))
return;

Expand Down

0 comments on commit 6a02d88

Please sign in to comment.