[MIRROR] We're </span>\n now, lads. (#2980)

* We're </span>\n now, lads.

* Update mood.dm

* Update mood.dm

Co-authored-by: RaveRadbury <3204033+RaveRadbury@users.noreply.github.com>
Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
This commit is contained in:
SkyratBot
2021-01-31 22:53:33 +00:00
committed by GitHub
co-authored by RaveRadbury Gandalf2k15
parent 1899415d93
commit 4539db1c75
6 changed files with 11 additions and 12 deletions
@@ -370,7 +370,7 @@
if(href_list["quirk"])
var/quirkstring = get_quirk_string(TRUE, CAT_QUIRK_ALL)
if(quirkstring)
to_chat(usr, "<span class='notice ml-1'>Detected physiological traits:\n</span><span class='notice ml-2'>[quirkstring]</span>")
to_chat(usr, "<span class='notice ml-1'>Detected physiological traits:</span>\n<span class='notice ml-2'>[quirkstring]</span>")
else
to_chat(usr, "<span class='notice ml-1'>No physiological traits found.</span>")
return //Medical HUD ends here.
+3 -3
View File
@@ -118,12 +118,12 @@
var/datum/gas_mixture/environment = loc.return_air()
var/t = "<span class='notice'>Coordinates: [x],[y] \n</span>"
t += "<span class='danger'>Temperature: [environment.temperature] \n</span>"
var/t = "<span class='notice'>Coordinates: [x],[y] </span>\n"
t += "<span class='danger'>Temperature: [environment.temperature] </span>\n"
for(var/id in environment.gases)
var/gas = environment.gases[id]
if(gas[MOLES])
t+="<span class='notice'>[gas[GAS_META][META_GAS_NAME]]: [gas[MOLES]] \n</span>"
t+="<span class='notice'>[gas[GAS_META][META_GAS_NAME]]: [gas[MOLES]] </span>\n"
to_chat(usr, t)