Revert "Revert "Load Maps on Round Start, not Round Restart v3 (#6989)" (#6990)"

This reverts commit 4aa65b6708.

Fixed the deadlock bug on postgres.
This commit is contained in:
Pieter-Jan Briers
2022-03-04 23:25:41 +01:00
parent c8a7f41331
commit 2c721226d6
6 changed files with 117 additions and 90 deletions

View File

@@ -2,6 +2,7 @@ using Content.Server.Administration.Logs;
using Content.Server.Administration.Managers;
using Content.Server.CharacterAppearance.Systems;
using Content.Server.Chat.Managers;
using Content.Server.Database;
using Content.Server.Ghost;
using Content.Server.Maps;
using Content.Server.PDA;
@@ -89,6 +90,7 @@ namespace Content.Server.GameTicking
[Dependency] private readonly IBaseServer _baseServer = default!;
[Dependency] private readonly IWatchdogApi _watchdogApi = default!;
[Dependency] private readonly IGameMapManager _gameMapManager = default!;
[Dependency] private readonly IServerDbManager _db = default!;
#if EXCEPTION_TOLERANCE
[Dependency] private readonly IRuntimeLog _runtimeLog = default!;
#endif