Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DEATHB4DEFEAT committed Feb 12, 2024
1 parent 813a341 commit ea72d82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Content.Client.SimpleStation14.Examine.CharacterInformation.UI;
using Content.Shared.Access.Components;
using Content.Shared.CCVar;
using Content.Shared.DetailExaminable;
using Content.Shared.SimpleStation14.DetailExaminable;
using Content.Shared.IdentityManagement.Components;
using Content.Shared.PDA;
using Content.Shared.Roles;
Expand Down Expand Up @@ -104,7 +104,7 @@ private void ShowInfoWindow(EntityUid uid)
/// </summary>
/// <param name="idUid">Entity to check</param>
/// <returns>ID card component if they have one on the entity</returns>
/// <remarks>This function should not exist</remarks>
/// <remarks>This function should not exist</remarks> // TODO Remove this function
private IdCardComponent? GetId(EntityUid? idUid)
{
// PDA
Expand Down
2 changes: 1 addition & 1 deletion Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Linq;
using Content.Shared.CCVar;
using Content.Shared.Decals;
using Content.Shared.DetailExaminable;
using Content.Shared.SimpleStation14.DetailExaminable;
using Content.Shared.Humanoid.Markings;
using Content.Shared.Humanoid.Prototypes;
using Content.Shared.Preferences;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Parkstation-CharacterInformation-Start
using Robust.Shared.GameStates;

namespace Content.Shared.DetailExaminable
namespace Content.Shared.SimpleStation14.DetailExaminable
{
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class DetailExaminableComponent : Component
Expand All @@ -12,4 +11,3 @@ public sealed partial class DetailExaminableComponent : Component
public string Content = "";
}
}
// Parkstation-CharacterInformation-End

0 comments on commit ea72d82

Please sign in to comment.