PullingController cooldown change (#29177)

* Revert "Automatic changelog update"

This reverts commit 3358aef40f.

* Revert "Revert "Automatic changelog update""

This reverts commit 3d0b6a7ade06ec555d4f6df3f39134b139e5247c.

* Removal of the throw cooldown as it felt sluggish and unresponsive before.
This commit is contained in:
Rouge2t7
2024-06-19 01:29:47 +01:00
committed by GitHub
parent 0910983c4b
commit c8de4ec397

View File

@@ -127,10 +127,6 @@ public sealed class PullController : VirtualController
if (_container.IsEntityInContainer(player)) if (_container.IsEntityInContainer(player))
return false; return false;
// Cooldown buddy
if (_timing.CurTime < pullerComp.NextThrow)
return false;
pullerComp.NextThrow = _timing.CurTime + pullerComp.ThrowCooldown; pullerComp.NextThrow = _timing.CurTime + pullerComp.ThrowCooldown;
// Cap the distance // Cap the distance