Skip to content

Commit 4a7c74e

Browse files
committed
offiiavaslybliy
1 parent fcb62e8 commit 4a7c74e

File tree

6 files changed

+8
-12
lines changed

6 files changed

+8
-12
lines changed

Content.Client/_Wega/Lavaland/LavalandConsoleBoundUserInterface.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
namespace Content.Client._Wega.Lavaland;
55

6-
public sealed class LavalandShuttleConsoleBoundUserInterface : BoundUserInterface
6+
public sealed class LavalandConsoleBoundUserInterface : BoundUserInterface
77
{
88
[ViewVariables]
99
private LavalandConsoleWindow? _window;
1010

11-
public LavalandShuttleConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { }
11+
public LavalandConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { }
1212

1313
protected override void Open()
1414
{

Content.Client/_Wega/Lavaland/LavalandConsoleWindow.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ namespace Content.Client._Wega.Lavaland;
1010
public sealed partial class LavalandConsoleWindow : FancyWindow
1111
{
1212
[Dependency] private readonly IGameTiming _gameTiming = default!;
13-
[Dependency] private readonly IDependencyCollection _dependencies = default!;
1413

1514
public Action? OnCallButtonPressed;
1615
private TimeSpan? _cooldownEndTime;
1716

1817
public LavalandConsoleWindow()
1918
{
2019
RobustXamlLoader.Load(this);
21-
_dependencies.InjectDependencies(this);
2220

2321
CallButton.OnPressed += _ => OnCallButtonPressed?.Invoke();
2422
}

Content.Client/_Wega/Lavaland/LavalandPenalServitudeConsoleWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<controls:FancyWindow xmlns="https://spacestation14.io"
2-
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
3-
SetSize="350 220">
2+
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
3+
SetSize="350 220">
44
<BoxContainer Orientation="Vertical" Margin="10">
55
<BoxContainer Orientation="Vertical" HorizontalExpand="True">
66
<PanelContainer Name="StatusPanel" StyleClasses="AngleRect" HorizontalExpand="True" VerticalExpand="False">

Content.Client/_Wega/Lavaland/LavalandPenalServitudeConsoleWindow.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ namespace Content.Client._Wega.Lavaland;
1010
public sealed partial class LavalandPenalServitudeConsoleWindow : FancyWindow
1111
{
1212
[Dependency] private readonly IGameTiming _gameTiming = default!;
13-
[Dependency] private readonly IDependencyCollection _dependencies = default!;
1413

1514
public Action? OnCallButtonPressed;
1615
private TimeSpan? _cooldownEndTime;
1716

1817
public LavalandPenalServitudeConsoleWindow()
1918
{
2019
RobustXamlLoader.Load(this);
21-
_dependencies.InjectDependencies(this);
2220

2321
CallButton.OnPressed += _ => OnCallButtonPressed?.Invoke();
2422
}

Content.Client/_Wega/Lavaland/LavalandPenalServitudeShuttleConsoleBoundUserInterface.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
namespace Content.Client._Wega.Lavaland;
55

6-
public sealed class LavalandPenalServitudeShuttleConsoleBoundUserInterface : BoundUserInterface
6+
public sealed class LavalandPenalServitudeConsoleBoundUserInterface : BoundUserInterface
77
{
88
[ViewVariables]
99
private LavalandPenalServitudeConsoleWindow? _window;
1010

11-
public LavalandPenalServitudeShuttleConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { }
11+
public LavalandPenalServitudeConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { }
1212

1313
protected override void Open()
1414
{

Resources/Prototypes/_Wega/Entities/Structures/Machines/Computers/computers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
- type: UserInterface
130130
interfaces:
131131
enum.LavalandShuttleConsoleUiKey.Key:
132-
type: LavalandShuttleConsoleBoundUserInterface
132+
type: LavalandConsoleBoundUserInterface
133133
enum.WiresUiKey.Key:
134134
type: WiresBoundUserInterface
135135
- type: ApcPowerReceiver
@@ -167,7 +167,7 @@
167167
- type: UserInterface
168168
interfaces:
169169
enum.PenalServitudeLavalandShuttleConsoleUiKey.Key:
170-
type: LavalandPenalServitudeShuttleConsoleBoundUserInterface
170+
type: LavalandPenalServitudeConsoleBoundUserInterface
171171
enum.WiresUiKey.Key:
172172
type: WiresBoundUserInterface
173173
- type: ApcPowerReceiver

0 commit comments

Comments
 (0)