Skip to content

Commit

Permalink
Removal of the throw cooldown as it felt sluggish and unresponsive be…
Browse files Browse the repository at this point in the history
…fore.
  • Loading branch information
Sarahon committed Jun 18, 2024
1 parent 16d50b3 commit 170dec8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Content.Server/Movement/Systems/PullController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,6 @@ private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinate
if (_container.IsEntityInContainer(player))
return false;

// Cooldown buddy
if (_timing.CurTime < pullerComp.NextThrow)
return false;

pullerComp.NextThrow = _timing.CurTime + pullerComp.ThrowCooldown;

// Cap the distance
Expand Down

0 comments on commit 170dec8

Please sign in to comment.