Fix initialization change

This commit is contained in:
PrPleGoo
2020-04-08 19:43:16 +02:00
parent a484b6fd52
commit 9194694085
2 changed files with 2 additions and 3 deletions

View File

@@ -36,9 +36,8 @@ namespace Content.Server.GameObjects.Components.Chemistry
Init();
}
public override void Init()
public void Init()
{
base.Init();
_reactions = _prototypeManager.EnumeratePrototypes<ReactionPrototype>();
_audioSystem = _entitySystemManager.GetEntitySystem<AudioSystem>();
}