Fix a criminal code formatting mistake in Content.Server/Entrypoint.cs

This commit is contained in:
DrSmugleaf 2021-05-19 12:55:20 +02:00 committed by GitHub
parent 1b1ab0d25b
commit b1e9fd6700
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<IComponentFactory>();
@ -39,4 +40,4 @@ namespace Content.Server
// DEVNOTE: Game update loop goes here. Usually you'll want some independent GameTicker.
}
}
}
}