Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CrimeMoot authored Sep 13, 2024
1 parent cd56043 commit 4c03f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Access/Systems/IdCardSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public bool TryChangeColor(EntityUid uid, Color? color, IdCardComponent? id = nu
return true;

id.JobColor = color.Value;
Dirty(uid);
Dirty(id);

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

Check failure on line 111 in Content.Server/Access/Systems/IdCardSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type arguments for method 'EntitySystem.Dirty<T>(Entity<T>, MetaDataComponent?)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

if (player != null)
{
Expand Down

0 comments on commit 4c03f2a

Please sign in to comment.