Skip to content

Commit

Permalink
Remove satchel gathering limit of 15. (#8521)
Browse files Browse the repository at this point in the history
* remove pickup-per-click limit from satchels

* comment...

oops

* yeah just kill it
  • Loading branch information
WrillWasTaken committed Sep 6, 2024
1 parent 85cfec5 commit 270f934
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions code/game/objects/items/weapons/storage/storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -473,10 +473,8 @@
/obj/item/storage/proc/collectItems(turf/target, mob/user)
ASSERT(istype(target))
. = FALSE
var/limiter = 15

for(var/obj/item/I in target)
if(--limiter < 0)
break
if(can_be_inserted(I, TRUE))
. |= TRUE
handle_item_insertion(I, TRUE)
Expand Down

0 comments on commit 270f934

Please sign in to comment.