Increase MoverController performance (#4448)

Should be a decent amount; rest will come from removing IActionBlocker.
This commit is contained in:
metalgearsloth
2021-08-15 14:03:08 +10:00
committed by GitHub
parent 25fd8b6d15
commit dcbb2d2a11
4 changed files with 89 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
using Content.Server.Physics.Controllers;
using Content.Shared.Friction;
using Robust.Shared.GameObjects;
namespace Content.Server.Friction
{
public sealed class TileFrictionController : SharedTileFrictionController
{
public override void Initialize()
{
base.Initialize();
Mover = EntitySystem.Get<SharedPhysicsSystem>().GetController<MoverController>();
}
}
}