Fix hot reload unit tests

This commit is contained in:
Pieter-Jan Briers
2022-11-12 15:09:54 +01:00
parent 490a4efff8
commit f1681b2128

View File

@@ -98,6 +98,7 @@ namespace Robust.UnitTesting
systems.LoadExtraSystemType<Robust.Client.Physics.JointSystem>();
systems.LoadExtraSystemType<Robust.Client.Physics.PhysicsSystem>();
systems.LoadExtraSystemType<Robust.Client.Debugging.DebugRayDrawingSystem>();
systems.LoadExtraSystemType<PrototypeReloadSystem>();
}
else
{
@@ -109,6 +110,7 @@ namespace Robust.UnitTesting
systems.LoadExtraSystemType<JointSystem>();
systems.LoadExtraSystemType<PhysicsSystem>();
systems.LoadExtraSystemType<DebugRayDrawingSystem>();
systems.LoadExtraSystemType<PrototypeReloadSystem>();
}
var entMan = IoCManager.Resolve<IEntityManager>();