diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index c26e99925455..370fee580ae6 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -196,9 +196,11 @@ . = ..() . += "
CARD INFO:" if(registered_name) - . += "This access card is assigned to [registered_name]." + . += "NAME:" + . += "[registered_name]" if(registered_age) - . += "The card indicates that the holder is [registered_age] years old. [(registered_age < AGE_MINOR) ? "There's a holographic stripe that reads 'MINOR: DO NOT SERVE ALCOHOL OR TOBACCO' along the bottom of the card." : ""]" + . += "AGE:" + . += "[registered_age] years old [(registered_age < AGE_MINOR) ? "There's a holographic stripe that reads 'MINOR: DO NOT SERVE ALCOHOL OR TOBACCO' along the bottom of the card." : ""]" if(length(ship_access)) . += "SHIP ACCESS:" @@ -212,7 +214,7 @@ var/list/ship_names = list() for(var/datum/overmap/ship/controlled/ship in ship_access) ship_names += ship.name - . += "The card has access to the following ships: [ship_names.Join(", ")]" + . += "[ship_names.Join(", ")]" /obj/item/card/id/GetAccess() return access