diff --git a/code/game/objects/items/robobag.dm b/code/game/objects/items/robobag.dm index ceaa117211..6734f33434 100644 --- a/code/game/objects/items/robobag.dm +++ b/code/game/objects/items/robobag.dm @@ -1,6 +1,6 @@ /obj/item/bodybag/cryobag/robobag - name = "synthmorph bag" + name = "synthbody bag" desc = "A reusable polymer bag designed to slow down synthetic functions such as data corruption and coolant flow, \ especially useful if short on time or in a hostile environment." icon = 'icons/obj/robobag.dmi' @@ -17,7 +17,7 @@ qdel(src) /obj/structure/closet/body_bag/cryobag/robobag - name = "synthmorph bag" + name = "synthbody bag" desc = "A reusable polymer bag designed to slow down synthetic functions such as data corruption and coolant flow, \ especially useful if short on time or in a hostile environment." icon = 'icons/obj/robobag.dmi' @@ -34,7 +34,7 @@ /obj/structure/closet/body_bag/cryobag/robobag/update_icon() if(opened) icon_state = "open" - else if (contents.len) + else if (length(contents)) icon_state = "closed_occupied" else icon_state = "closed_unlocked" diff --git a/code/game/objects/items/weapons/tanks/tank_types.dm b/code/game/objects/items/weapons/tanks/tank_types.dm index ed30c79afd..acf0787042 100644 --- a/code/game/objects/items/weapons/tanks/tank_types.dm +++ b/code/game/objects/items/weapons/tanks/tank_types.dm @@ -218,9 +218,9 @@ . += "The meter on \the [src] indicates you are almost out of nitrogen!" //playsound(user, 'sound/effects/alert.ogg', 50, 1) -/obj/item/tank/stasis/nitro_cryo // Synthmorph bags need to have initial pressure within safe bounds for human atmospheric pressure, but low temperature to stop unwanted degredation. +/obj/item/tank/stasis/nitro_cryo // Synthbody bags need to have initial pressure within safe bounds for human atmospheric pressure, but low temperature to stop unwanted degredation. name = "stasis cryogenic nitrogen tank" - desc = "Cryogenic Nitrogen tank included in most synthmorph bag designs." + desc = "Cryogenic Nitrogen tank included in most synthbody bag designs." icon_state = "emergency_double_nitro" gauge_icon = "indicator_emergency_double" volume = 10 diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index 5be300d77a..8175b005da 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -201,7 +201,7 @@ badge_string = "Sicurity Journelist" w_class = ITEMSIZE_SMALL -// Synthmorph bag / Corporation badges. Primarily used on the robobag, but can be worn. Default is NT. +// Synthbody bag / Corporation badges. Primarily used on the robobag, but can be worn. Default is NT. /obj/item/clothing/accessory/medal/badge/corporate_tag name = "NanoTrasen Badge" diff --git a/code/modules/research/prosfab_designs.dm b/code/modules/research/prosfab_designs.dm index 11d29d553d..d197b8f572 100644 --- a/code/modules/research/prosfab_designs.dm +++ b/code/modules/research/prosfab_designs.dm @@ -83,7 +83,7 @@ H.b_skin = 0 H.dna.ResetUIFrom(H) - H.real_name = "Synthmorph #[rand(100,999)]" + H.real_name = "Synthbody #[rand(100,999)]" H.name = H.real_name H.dir = 2 H.add_language(LANGUAGE_EAL) @@ -460,10 +460,10 @@ materials = list(MAT_STEEL = 25000, MAT_GLASS = 3000, MAT_GOLD = 350) build_path = /obj/item/borg/upgrade/language -// Synthmorph Bags. +// Synthbody Bags. -/datum/design/item/prosfab/synthmorphbag - name = "Synthmorph Storage Bag" +/datum/design/item/prosfab/synthbodybag + name = "Synthbody Storage Bag" desc = "Used to store or slowly defragment an FBP." id = "misc_synth_bag" materials = list(MAT_STEEL = 250, MAT_GLASS = 250, MAT_PLASTIC = 2000)