Fix restartroundnow.

Fixes #4863
Fixes #4861
This commit is contained in:
Pieter-Jan Briers
2021-10-13 20:46:45 +02:00
parent d52965cbd1
commit d0472998a6

View File

@@ -30,7 +30,7 @@ namespace Content.Server.GameTicking.Commands
public void Execute(IConsoleShell shell, string argStr, string[] args)
{
EntitySystem.Get<GameTicker>().EndRound();
EntitySystem.Get<GameTicker>().RestartRound();
}
}
}