Skip to content

Commit

Permalink
these changes were not staged
Browse files Browse the repository at this point in the history
  • Loading branch information
WarMechanic committed Jun 22, 2024
1 parent 4c05520 commit 39ba454
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -851,10 +851,6 @@ public void RefreshJobs()

foreach (var job in jobs)
{
// DeltaV #1418 - Allow hiding jobs to hide senior virtual jobs
if (job.EditorHidden)
continue;

var jobContainer = new BoxContainer()
{
Orientation = LayoutOrientation.Horizontal,
Expand Down
12 changes: 12 additions & 0 deletions Content.Server/Access/Components/PresetIdCardComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,16 @@ public sealed partial class PresetIdCardComponent : Component

[DataField("name")]
public string? IdName;

/// <summary>
/// DeltaV: Allow changing the job title, even if it'd be otherwise set by the JobPrototype
/// </summary>
[DataField("virtualJobName")]
public string? VirtualJobName;

/// <summary>
/// DeltaV: Allow changing the job icon, even if it'd be otherwise set by the JobPrototype
/// </summary>
[DataField("virtualJobIcon")]
public string? virtualJobIcon;
}

0 comments on commit 39ba454

Please sign in to comment.