diff --git a/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm b/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm
index 296374adbd4..c496d107000 100644
--- a/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm
+++ b/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm
@@ -8,13 +8,13 @@ Doesn't work on other aliens/AI.*/
/mob/living/carbon/alien/proc/powerc(X, Y)//Y is optional, checks for weed planting. X can be null.
if(stat)
- src << "\green You must be conscious to do this."
+ src << "You must be conscious to do this."
return 0
else if(X && getPlasma() < X)
- src << "\green Not enough plasma stored."
+ src << "Not enough plasma stored."
return 0
else if(Y && (!isturf(src.loc) || istype(src.loc, /turf/space)))
- src << "\green Bad place for a garden!"
+ src << "You can't place that here!"
return 0
else return 1
@@ -155,7 +155,7 @@ Doesn't work on other aliens/AI.*/
spawn(60)
adjustToxLoss(-75)
for(var/mob/O in viewers(src, null))
- O.show_message(text("[src] vomits up a thick purple substance and shapes it!"), 1)
+ O.show_message(text("[src] vomits up a thick purple substance and shapes it!"), 1)
switch(choice)
if("resin door")
new /obj/structure/mineral_door/resin(loc)
diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm
index 7b7bb5fe859..b8f412a488e 100644
--- a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm
+++ b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm
@@ -80,7 +80,7 @@
adjustToxLoss(-250)
src << "\green You begin to evolve!"
for(var/mob/O in viewers(src, null))
- O.show_message(text("\green [src] begins to twist and contort!"), 1)
+ O.show_message(text("[src] begins to twist and contort!"), 1)
var/mob/living/carbon/alien/humanoid/sentinel/praetorian/new_xeno = new(loc)
if(mind)
mind.transfer_to(new_xeno)
diff --git a/code/modules/mob/living/carbon/alien/humanoid/queen.dm b/code/modules/mob/living/carbon/alien/humanoid/queen.dm
index ae4024bb852..082431574d4 100644
--- a/code/modules/mob/living/carbon/alien/humanoid/queen.dm
+++ b/code/modules/mob/living/carbon/alien/humanoid/queen.dm
@@ -122,7 +122,7 @@
adjustToxLoss(-1000)
src << "You begin to evolve!"
for(var/mob/O in viewers(src, null))
- O.show_message(text("\green [src] begins to twist and contort!"), 1)
+ O.show_message(text("[src] begins to twist and contort!"), 1)
var/mob/living/carbon/alien/humanoid/empress/new_xeno = new(loc)
if(mind)
mind.transfer_to(new_xeno)
diff --git a/code/modules/mob/living/carbon/alien/larva/powers.dm b/code/modules/mob/living/carbon/alien/larva/powers.dm
index c42a2dffbb4..a5655da1da5 100644
--- a/code/modules/mob/living/carbon/alien/larva/powers.dm
+++ b/code/modules/mob/living/carbon/alien/larva/powers.dm
@@ -9,7 +9,7 @@
if (layer != TURF_LAYER+0.2)
layer = TURF_LAYER+0.2
- src << text("\green You are now hiding.")
+ src << text("You are now hiding.")
for(var/mob/O in oviewers(src, null))
if ((O.client && !( O.blinded )))
O << text("[] scurries to the ground!", src)
@@ -56,5 +56,5 @@
del(src)
return
else
- src << "\red You are not fully grown."
+ src << "You are not fully grown."
return