Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Jul 23, 2023
1 parent c9dd589 commit a59f7fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/machinery/computer/pandemic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@
dat += "<hr>"
var/list/vaccine_data = GetResistanceData(B)
if(LAZYLEN(vaccine_data))
dat += "Antibodies detected for the following diseases:"
dat += "Antibodies detected for the following diseases:<br>"
for(var/V in vaccine_data)
dat += "- <A href='byond://?src=[REF(src)];create_vaccine_bottle=[V["index"]]'>[V["name"]]</a><br>"
dat += "- <A href='byond://?src=[REF(src)];create_vaccine_bottle=[V["id"]]'>[V["name"]]</a><br>"
if(!LAZYLEN(disease_data) && !LAZYLEN(vaccine_data))
to_chat(user, SPAN_WARNING("\The [src] cannot detect any visible diseases or antibodies."))
else
Expand Down

0 comments on commit a59f7fc

Please sign in to comment.