Pulling rework (#20906)
* Pulling rework Fixing up the FOUR systems managing pulling, all the shitcode, and also making it nicer ingame. * More pulling cleanup * stats * More cleanup * First draft * More pulling * weh * Fix puller * Pulling working * Fix merge * Dunked * Self-merge time
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using Content.Shared.Pulling;
|
||||
using PullingSystem = Content.Shared.Movement.Pulling.Systems.PullingSystem;
|
||||
|
||||
namespace Content.Server.NPC.HTN.Preconditions;
|
||||
|
||||
@@ -7,14 +8,14 @@ namespace Content.Server.NPC.HTN.Preconditions;
|
||||
/// </summary>
|
||||
public sealed partial class PulledPrecondition : HTNPrecondition
|
||||
{
|
||||
private SharedPullingSystem _pulling = default!;
|
||||
private PullingSystem _pulling = default!;
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)] [DataField("isPulled")] public bool IsPulled = true;
|
||||
|
||||
public override void Initialize(IEntitySystemManager sysManager)
|
||||
{
|
||||
base.Initialize(sysManager);
|
||||
_pulling = sysManager.GetEntitySystem<SharedPullingSystem>();
|
||||
_pulling = sysManager.GetEntitySystem<PullingSystem>();
|
||||
}
|
||||
|
||||
public override bool IsMet(NPCBlackboard blackboard)
|
||||
|
||||
Reference in New Issue
Block a user