diff --git a/Content.Client/Roles/JobSystem.cs b/Content.Client/Roles/JobSystem.cs index f49bb7de55..632554602c 100644 --- a/Content.Client/Roles/JobSystem.cs +++ b/Content.Client/Roles/JobSystem.cs @@ -1,4 +1,3 @@ -using Content.Shared.Roles; using Content.Shared.Roles.Jobs; namespace Content.Client.Roles; diff --git a/Content.Client/Roles/Jobs/JobSystem.cs b/Content.Client/Roles/Jobs/JobSystem.cs deleted file mode 100644 index 7e7c4ccc3e..0000000000 --- a/Content.Client/Roles/Jobs/JobSystem.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Roles.Jobs; - -namespace Content.Client.Roles.Jobs; - -public sealed class JobSystem : SharedJobSystem -{ -} diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 6442ef2c67..13d0794dd5 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -205,7 +205,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem if (!_tracking.TryGetTrackerTimes(player, out var playTimes)) { // Sorry mate but your playtimes haven't loaded. - Logger.ErrorS("playtime", $"Playtimes weren't ready yet for {player} on roundstart!"); + Log.Error($"Playtimes weren't ready yet for {player} on roundstart!"); playTimes ??= new Dictionary(); } diff --git a/Content.Server/Roles/Jobs/JobSystem.cs b/Content.Server/Roles/Jobs/JobSystem.cs index 66224d1aba..7bee6da755 100644 --- a/Content.Server/Roles/Jobs/JobSystem.cs +++ b/Content.Server/Roles/Jobs/JobSystem.cs @@ -19,6 +19,7 @@ public sealed class JobSystem : SharedJobSystem public override void Initialize() { + base.Initialize(); SubscribeLocalEvent(MindOnDoGreeting); }