Suspicion on the Space Station gamemode (#849)
This commit is contained in:
committed by
GitHub
parent
ccbe4bc23f
commit
5d7514674e
@@ -1,5 +1,7 @@
|
||||
using Content.Server.GameTicking.GameRules;
|
||||
using System.Collections.Generic;
|
||||
using Content.Server.GameTicking.GameRules;
|
||||
using Content.Server.Interfaces.GameTicking;
|
||||
using Robust.Server.Interfaces.Player;
|
||||
using Robust.Shared.IoC;
|
||||
|
||||
namespace Content.Server.GameTicking.GamePresets
|
||||
@@ -10,9 +12,10 @@ namespace Content.Server.GameTicking.GamePresets
|
||||
[Dependency] private readonly IGameTicker _gameTicker;
|
||||
#pragma warning restore 649
|
||||
|
||||
public override void Start()
|
||||
public override bool Start(IReadOnlyList<IPlayerSession> readyPlayers)
|
||||
{
|
||||
_gameTicker.AddGameRule<RuleDeathMatch>();
|
||||
return true;
|
||||
}
|
||||
|
||||
public override string ModeTitle => "Deathmatch";
|
||||
|
||||
Reference in New Issue
Block a user