diff --git a/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm b/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm index 564225126bc..61a4ef94011 100644 --- a/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm +++ b/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm @@ -343,6 +343,8 @@ if(iscarbon(mob)) if(ishuman(mob)) var/mob/living/carbon/human/H = mob + if(H.dna && H.dna.species) + H.dna.species.handle_hair(H,"#1d2953") //will be reset when blight is cured var/blightfound = 0 for(var/datum/disease/revblight/blight in H.viruses) blightfound = 1 diff --git a/code/game/objects/effects/effect_system/effects_smoke.dm b/code/game/objects/effects/effect_system/effects_smoke.dm index 7e3914a5488..ee250dd9e92 100644 --- a/code/game/objects/effects/effect_system/effects_smoke.dm +++ b/code/game/objects/effects/effect_system/effects_smoke.dm @@ -150,7 +150,6 @@ /obj/effect/particle_effect/smoke/freezing name = "nanofrost smoke" color = "#B2FFFF" - atom_colours= list("", "", "", "#B2FFFF") opaque = 0 /datum/effect_system/smoke_spread/freezing diff --git a/code/modules/events/wizard/greentext.dm b/code/modules/events/wizard/greentext.dm index 0aed833be91..4579f917e66 100644 --- a/code/modules/events/wizard/greentext.dm +++ b/code/modules/events/wizard/greentext.dm @@ -87,7 +87,8 @@ var/message = "A dark temptation has passed from this world" if(M in color_altered_mobs) message += " and you're finally able to forgive yourself" - M.remove_atom_colour(ADMIN_COLOUR_PRIORITY) + if(M.color == "#FF0000" || M.color == "#00FF00") + M.remove_atom_colour(ADMIN_COLOUR_PRIORITY) message += "..." // can't skip the mob check as it also does the decolouring if(!quiet)