Skip to content

Commit

Permalink
Automatic TGS DMAPI Update (#6290)
Browse files Browse the repository at this point in the history
This pull request updates the TGS DMAPI to the latest version. Please
note any breaking or unimplemented changes before merging.

Co-authored-by: tgstation-server <[email protected]>
  • Loading branch information
cm13-github and tgstation-server committed May 16, 2024
1 parent e2edaf5 commit 5da327a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/tgs/v5/chunking.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
var/chunk_count
var/list/chunk_requests
for(chunk_count = 2; !chunk_requests; ++chunk_count)
var/max_chunk_size = -floor(-(data_length / chunk_count))
var/max_chunk_size = -round(-(data_length / chunk_count))
if(max_chunk_size > limit)
continue

Expand Down

0 comments on commit 5da327a

Please sign in to comment.