Skip to content

Commit

Permalink
Allow AreaInsert pickups for one item (#32153)
Browse files Browse the repository at this point in the history
Update SharedStorageSystem.cs
  • Loading branch information
dvir001 authored Sep 24, 2024
1 parent 9d75a22 commit 50395e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,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 50395e2

Please sign in to comment.