Skip to content

Commit

Permalink
that
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons committed Sep 2, 2024
1 parent 6c07d3b commit dedfdaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mining/machine_unloading.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/obj/machinery/mineral/unloading_machine/process(delta_time)
if(output && input)
if(length(output.loc.contents) > 100) // let's not!
if(length(output.loc.contents) > TURF_CROWDING_SOFT_LIMIT) // let's not!
return
var/obj/structure/ore_box/O = locate() in input.loc
if(O)
Expand Down

0 comments on commit dedfdaf

Please sign in to comment.