From d0472998a677dbe6a41fe67f82a7ef6a1695ef47 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 13 Oct 2021 20:46:45 +0200 Subject: [PATCH] Fix restartroundnow. Fixes #4863 Fixes #4861 --- Content.Server/GameTicking/Commands/RestartRoundCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameTicking/Commands/RestartRoundCommand.cs b/Content.Server/GameTicking/Commands/RestartRoundCommand.cs index fb39907e08..84c2f68c6e 100644 --- a/Content.Server/GameTicking/Commands/RestartRoundCommand.cs +++ b/Content.Server/GameTicking/Commands/RestartRoundCommand.cs @@ -30,7 +30,7 @@ namespace Content.Server.GameTicking.Commands public void Execute(IConsoleShell shell, string argStr, string[] args) { - EntitySystem.Get().EndRound(); + EntitySystem.Get().RestartRound(); } } }