From 354017cce081bd596c49e9282ba577e2b1cac2fa Mon Sep 17 00:00:00 2001 From: metalgearsloth Date: Sun, 12 Jun 2022 13:33:48 +1000 Subject: [PATCH] Fix master --- Content.Server/GameTicking/Rules/PiratesRuleSystem.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index 6cefb49d78..930cef8943 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Server.Cargo.Systems; using Content.Server.Chat.Managers; +using Content.Server.GameTicking.Rules.Configurations; using Content.Server.RoundEnd; using Content.Server.Spawners.Components; using Content.Server.Station.Components; @@ -119,9 +120,9 @@ public sealed class PiratesRuleSystem : GameRuleSystem } } - public override void Started() { } + public override void Started(GameRuleConfiguration _) { } - public override void Ended() { } + public override void Ended(GameRuleConfiguration _) { } private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) {