diff --git a/code/modules/error_handler/error_viewer.dm b/code/modules/error_handler/error_viewer.dm index a350347b309..661aff8bb6c 100644 --- a/code/modules/error_handler/error_viewer.dm +++ b/code/modules/error_handler/error_viewer.dm @@ -86,7 +86,10 @@ GLOBAL_DATUM(error_cache, /datum/ErrorViewer/ErrorCache) var/datum/ErrorViewer/ErrorSource/error_source for(var/erroruid in error_sources) error_source = error_sources[erroruid] - html += "

[error_source.makeLink(null, src)]

" + var/e_count_text = length(error_source.errors) + if(e_count_text >= ERROR_LIMIT) + e_count_text = "[e_count_text]+" + html += "

([e_count_text]) [error_source.makeLink(null, src)]

" else html += "[makeLink("organized", null)] | linear
" for(var/datum/ErrorViewer/ErrorEntry/error_entry in errors)