Skip to content

Commit

Permalink
Makes ammo box transfer time shorter
Browse files Browse the repository at this point in the history
  • Loading branch information
private-tristan committed Jul 14, 2024
1 parent ce40a45 commit aac18da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/ammo_boxes/ammo_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@
// Half-Loop 1: Start transfering
else if(!transfering)
transfering = min(transferable, 48) // Max per transfer
if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, dumping ? BUSY_ICON_HOSTILE : BUSY_ICON_FRIENDLY))
if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, dumping ? BUSY_ICON_HOSTILE : BUSY_ICON_FRIENDLY))
to_chat(user, SPAN_NOTICE("You stop transferring rounds."))
transferable = 0

Expand Down

0 comments on commit aac18da

Please sign in to comment.