Fix code to work with engine update

This commit is contained in:
Pieter-Jan Briers
2017-10-29 21:43:42 +01:00
parent 283ed302db
commit 074e6d8b62
3 changed files with 305 additions and 301 deletions

View File

@@ -1,5 +1,6 @@
using Content.Server.GameObjects;
using Content.Server.Interfaces.GameObjects;
using SS14.Server.Interfaces.Player;
using SS14.Shared.ContentPack;
using SS14.Shared.Interfaces.GameObjects;
using SS14.Shared.IoC;
@@ -28,6 +29,9 @@ namespace Content.Server
factory.Register<DestructibleComponent>();
factory.Register<TemperatureComponent>();
factory.Register<ServerDoorComponent>();
var playerManager = IoCManager.Resolve<IPlayerManager>();
playerManager.PlayerPrototypeName = "HumanMob_Content";
}
}
}