diff --git a/code/game/machinery/atmoalter/canister.dm b/code/game/machinery/atmoalter/canister.dm
index f82205af0c..10be6d267c 100644
--- a/code/game/machinery/atmoalter/canister.dm
+++ b/code/game/machinery/atmoalter/canister.dm
@@ -29,6 +29,8 @@
/obj/machinery/portable_atmospherics/canister/oxygen
name = "Canister: \[O2\]"
icon_state = "blue"
+ color = "blue"
+ labeled = 1
/obj/machinery/portable_atmospherics/canister/toxins
name = "Canister \[Toxin (Bio)\]"
icon_state = "orange"
diff --git a/code/game/objects/stacks/stack.dm b/code/game/objects/stacks/stack.dm
index 4a81fe9a3a..766ce6ad3a 100644
--- a/code/game/objects/stacks/stack.dm
+++ b/code/game/objects/stacks/stack.dm
@@ -116,7 +116,7 @@
if (!src || amount<=0)
user << browse(null, "window=stack")
user.machine = src //for correct work of onclose
- var/t1 = text("
Constructions from []Amount Left: []", src, src.amount)
+ var/t1 = text("Constructions from []Amount Left: []
", src, src.amount)
for(var/i=1;i<=recipes.len,i++)
var/datum/stack_recipe/R = recipes[i]
if (isnull(R))
diff --git a/code/modules/admin/verbs/deadsay.dm b/code/modules/admin/verbs/deadsay.dm
index ed55ef1f76..26b02db09f 100644
--- a/code/modules/admin/verbs/deadsay.dm
+++ b/code/modules/admin/verbs/deadsay.dm
@@ -17,8 +17,8 @@
if (!msg)
return
- var/rendered = "DEAD: ADMIN([src.stealth ? src.fakekey : src.key]) says, \"[msg]\""
- //pick("BADMIN", "ViktoriaSA", "Drunkwaffel", "Android Datuhh")
+ var/rendered = "DEAD: ADMIN([src.stealth ? pick("BADMIN", "ViktoriaSA", "Drunkwaffel", "Android Datuhh") : src.key]) says, \"[msg]\""
+
for (var/mob/M in world)
if(M.stat == 2 || (M.client && M.client.holder))
M.show_message(rendered, 2)
\ No newline at end of file