From b1e9fd670043d3d8ea73d82d327ff94be165e253 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Wed, 19 May 2021 12:55:20 +0200 Subject: [PATCH] Fix a criminal code formatting mistake in Content.Server/Entrypoint.cs --- Content.Server/EntryPoint.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/EntryPoint.cs b/Content.Server/EntryPoint.cs index bf7d17e..09fb4e8 100644 --- a/Content.Server/EntryPoint.cs +++ b/Content.Server/EntryPoint.cs @@ -8,7 +8,8 @@ namespace Content.Server { public class EntryPoint : GameServer { - public override void Init() { + public override void Init() + { base.Init(); var factory = IoCManager.Resolve(); @@ -39,4 +40,4 @@ namespace Content.Server // DEVNOTE: Game update loop goes here. Usually you'll want some independent GameTicker. } } -} \ No newline at end of file +}