diff --git a/ZoFo/GameCore/GameObjects/GameObject.cs b/ZoFo/GameCore/GameObjects/GameObject.cs index 01dce1b..23b5372 100644 --- a/ZoFo/GameCore/GameObjects/GameObject.cs +++ b/ZoFo/GameCore/GameObjects/GameObject.cs @@ -19,9 +19,7 @@ public abstract class GameObject #region ServerSide public GameObject(Vector2 position) { - this.position = position; - server = new Server(); - server.RegisterGameObject(this); + this.position = position; graphicsComponent.LoadContent(); }