diff --git a/code/game/objects/structures/tank_holder.dm b/code/game/objects/structures/tank_holder.dm index 5a9eb683c5c..3d0b5e18b75 100644 --- a/code/game/objects/structures/tank_holder.dm +++ b/code/game/objects/structures/tank_holder.dm @@ -5,7 +5,7 @@ icon = 'icons/obj/canisters.dmi' icon_state = "holder" - custom_materials = list(/datum/material/iron =SHEET_MATERIAL_AMOUNT) + custom_materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT) density = FALSE anchored = FALSE @@ -35,11 +35,14 @@ /obj/structure/tank_holder/examine(mob/user) . = ..() - . += "It is [anchored ? "wrenched to the floor." : "The bolts on the bottom are unsecured."]
" - if(tank) - . += "It is holding one [tank]." + if(anchored) + . += span_notice("It is bolted to the floor.") else - . += "It is empty." + . += span_notice("The bolts on the bottom are unsecured.") + if(tank) + . += span_notice("It is holding \a [tank].") + else + . += span_notice("It is empty.") . += span_notice("It is held together by some screws.") /obj/structure/tank_holder/attackby(obj/item/W, mob/living/user, list/modifiers, list/attack_modifiers)