Skip to content

Commit

Permalink
Move from SimpleStation14 to Parkstation namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
vaketola committed Mar 18, 2024
1 parent 65466c8 commit bece17e
Show file tree
Hide file tree
Showing 40 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Content.Server/Chat/Systems/ChatSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public sealed partial class ChatSystem : SharedChatSystem
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
[Dependency] private readonly StationSystem _stationSystem = default!;
[Dependency] private readonly MobStateSystem _mobStateSystem = default!;
[Dependency] private readonly SimpleStationChatSystem _simpleStationChatSystem = default!; // Parkstation-EmpathyChat
[Dependency] private readonly ParkstationChatSystem _parkstationChatSystem = default!; // Parkstation-EmpathyChat
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
[Dependency] private readonly ReplacementAccentSystem _wordreplacement = default!;
Expand Down Expand Up @@ -286,7 +286,7 @@ public void TrySendInGameICMessage(
break;
// Parkstation-EmpathyChat
case InGameICChatType.Empathy:
_simpleStationChatSystem.SendEmpathyChat(source, message, range == ChatTransmitRange.HideChat);
_parkstationChatSystem.SendEmpathyChat(source, message, range == ChatTransmitRange.HideChat);
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Content.Server.Parkstation.Chat
/// <summary>
/// Extensions for Parkstation's chat stuff
/// </summary>
public sealed class SimpleStationChatSystem : EntitySystem
public sealed class ParkstationChatSystem : EntitySystem
{
[Dependency] private readonly IAdminManager _adminManager = default!;
[Dependency] private readonly IChatManager _chatManager = default!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Content.Shared.Parkstation.Species.Shadowkin.Events;
public sealed partial class ShadowkinTeleportEvent : WorldTargetActionEvent, ISpeakSpell
{
[DataField("sound")]
public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/SimpleStation14/Effects/Shadowkin/Powers/teleport.ogg");
public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Parkstation/Effects/Shadowkin/Powers/teleport.ogg");

[DataField("volume")]
public float Volume = 5f;
Expand All @@ -35,13 +35,13 @@ public sealed partial class ShadowkinTeleportEvent : WorldTargetActionEvent, ISp
public sealed partial class ShadowkinDarkSwapEvent : InstantActionEvent, ISpeakSpell
{
[DataField("soundOn")]
public SoundSpecifier SoundOn = new SoundPathSpecifier("/Audio/SimpleStation14/Effects/Shadowkin/Powers/darkswapon.ogg");
public SoundSpecifier SoundOn = new SoundPathSpecifier("/Audio/Parkstation/Effects/Shadowkin/Powers/darkswapon.ogg");

[DataField("volumeOn")]
public float VolumeOn = 5f;

[DataField("soundOff")]
public SoundSpecifier SoundOff = new SoundPathSpecifier("/Audio/SimpleStation14/Effects/Shadowkin/Powers/darkswapoff.ogg");
public SoundSpecifier SoundOff = new SoundPathSpecifier("/Audio/Parkstation/Effects/Shadowkin/Powers/darkswapoff.ogg");

[DataField("volumeOff")]
public float VolumeOff = 5f;
Expand Down

0 comments on commit bece17e

Please sign in to comment.