From bfe1d5a599d839f4d964aed445ab001bcf22edd2 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Fri, 4 Sep 2015 14:52:10 +0930 Subject: [PATCH] Span classes. --- code/game/objects/effects/aliens.dm | 4 ++-- code/game/objects/structures/alien/resin.dm | 2 +- code/modules/organs/subtypes/xenos.dm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index a98d9f8089e..1e4525d3553 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -31,7 +31,7 @@ ticks++ if(ticks >= target_strength) - target.visible_message("[target] collapses under its own weight into a puddle of goop and undigested debris!") + target.visible_message("\The [target] collapses under its own weight into a puddle of goop and undigested debris!") if(istype(target, /turf/simulated/wall)) // I hate turf code. var/turf/simulated/wall/W = target W.dismantle_wall(1) @@ -42,7 +42,7 @@ switch(target_strength - ticks) if(6) - visible_message("\The [src.target] is holding up against the acid!") + visible_message("\The [src.target] is holding up against the acid!") if(4) visible_message("\The [src.target]\s structure is being melted by the acid!") if(2) diff --git a/code/game/objects/structures/alien/resin.dm b/code/game/objects/structures/alien/resin.dm index 4573648fdbb..05f6bca0e72 100644 --- a/code/game/objects/structures/alien/resin.dm +++ b/code/game/objects/structures/alien/resin.dm @@ -39,7 +39,7 @@ if(istype(user,/mob/living/carbon)) var/mob/living/carbon/M = user if(locate(/obj/item/organ/xenos/hivenode) in M.internal_organs) - visible_message("\The [user] strokes \the [name] and it melts away!") + visible_message("\The [user] strokes \the [name] and it melts away!") health = 0 healthcheck() return diff --git a/code/modules/organs/subtypes/xenos.dm b/code/modules/organs/subtypes/xenos.dm index d68b869974f..56f51e903c6 100644 --- a/code/modules/organs/subtypes/xenos.dm +++ b/code/modules/organs/subtypes/xenos.dm @@ -68,4 +68,4 @@ H << "You feel a sense of pressure as a vast intelligence meshes with your thoughts..." if(H.species.get_bodytype() != "Xenomorph" && xenomorphs.add_antagonist_mind(H.mind,1)) H << "Your will is ripped away as your humanity merges with the xenomorph hive. You are now a thrall to the queen and her brood. \ - Obey their instructions without question. Serve the hive." \ No newline at end of file + Obey their instructions without question. Serve the hive." \ No newline at end of file