Skip to content

Commit

Permalink
Fixes asset topic sanity. (#44550)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnturK authored and ninjanomnom committed Jun 15, 2019
1 parent a1365dc commit 53adafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/client/client_procs.dm
Expand Up @@ -41,7 +41,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
var/job = text2num(href_list["asset_cache_confirm_arrival"])
//because we skip the limiter, we have to make sure this is a valid arrival and not somebody tricking us
// into letting append to a list without limit.
if (job && job <= last_asset_job && !(job in completed_asset_jobs))
if (job > 0 && job <= last_asset_job && !(job in completed_asset_jobs))
completed_asset_jobs += job
return
else if (job in completed_asset_jobs) //byond bug ID:2256651
Expand Down

0 comments on commit 53adafe

Please sign in to comment.