Skip to content

Commit

Permalink
Remove stray semi-colon from DMAPI [DMDeploy]
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Apr 17, 2023
1 parent fb44793 commit 633b628
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/Version.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<TgsApiVersion>9.9.0</TgsApiVersion>
<TgsApiLibraryVersion>10.3.0</TgsApiLibraryVersion>
<TgsClientVersion>11.3.0</TgsClientVersion>
<TgsDmapiVersion>6.4.0</TgsDmapiVersion>
<TgsDmapiVersion>6.4.1</TgsDmapiVersion>
<TgsInteropVersion>5.6.0</TgsInteropVersion>
<TgsHostWatchdogVersion>1.2.1</TgsHostWatchdogVersion>
<TgsContainerScriptVersion>1.2.1</TgsContainerScriptVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/DMAPI/tgs.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// tgstation-server DMAPI

#define TGS_DMAPI_VERSION "6.4.0"
#define TGS_DMAPI_VERSION "6.4.1"

// All functions and datums outside this document are subject to change with any version and should not be relied on.

Expand Down
2 changes: 1 addition & 1 deletion src/DMAPI/tgs/v5/chunking.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

var/chunk_count
var/list/chunk_requests
for(chunk_count = 2; !chunk_requests; ++chunk_count);
for(chunk_count = 2; !chunk_requests; ++chunk_count)
var/max_chunk_size = -round(-(data_length / chunk_count))
if(max_chunk_size > limit)
continue
Expand Down

0 comments on commit 633b628

Please sign in to comment.