Skip to content

Commit

Permalink
Allow AreaInsert pickups for one item (#2005)
Browse files Browse the repository at this point in the history
* Allow AreaInsert pickups for one item

* Update SharedStorageSystem.cs

---------

Co-authored-by: Dvir <[email protected]>
  • Loading branch information
whatston3 and dvir001 authored Sep 14, 2024
1 parent edae074 commit 8b27df7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt
}

//If there's only one then let's be generous
if (_entList.Count > 1)
if (_entList.Count >= 1)
{
var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid)
{
Expand Down

0 comments on commit 8b27df7

Please sign in to comment.