diff --git a/code/modules/research/circuitprinter.dm b/code/modules/research/circuitprinter.dm index 6c960e0d5c8..427fffa7d8f 100644 --- a/code/modules/research/circuitprinter.dm +++ b/code/modules/research/circuitprinter.dm @@ -92,7 +92,7 @@ using metal and glass, it uses glass and reagents (usually sulfuric acis). if (disabled) return if (!linked_console) - user << "\The [name] must be linked to an R&D console first!" + user << "The [name] must be linked to an R&D console first!" return 1 if (O.is_open_container()) return diff --git a/code/modules/research/destructive_analyzer.dm b/code/modules/research/destructive_analyzer.dm index 9034c3430a4..3d2f4ffc7ec 100644 --- a/code/modules/research/destructive_analyzer.dm +++ b/code/modules/research/destructive_analyzer.dm @@ -53,38 +53,28 @@ Note: Must be placed within 3 tiles of the R&D Console if (disabled) return if (!linked_console) - user << "The protolathe must be linked to an R&D console first!" + user << "The [src.name] must be linked to an R&D console first!" return if (busy) - user << " The protolathe is busy right now." + user << "The [src.name] is busy right now." return if (istype(O, /obj/item) && !loaded_item) if(!O.origin_tech) - user << " This doesn't seem to have a tech origin!" + user << "This doesn't seem to have a tech origin!" return var/list/temp_tech = ConvertReqString2List(O.origin_tech) if (temp_tech.len == 0) - user << " You cannot deconstruct this item!" + user << "You cannot deconstruct this item!" return if(!user.drop_item()) - user << "\The [O] is stuck to your hand, you cannot put it in the analyzer!" + user << "\The [O] is stuck to your hand, you cannot put it in the [src.name]!" return busy = 1 loaded_item = O O.loc = src - user << "You add the [O.name] to the machine!" + user << "You add the [O.name] to the [src.name]!" flick("d_analyzer_la", src) spawn(10) icon_state = "d_analyzer_l" busy = 0 return - -//For testing purposes only. -/*/obj/item/weapon/deconstruction_test - name = "Test Item" - desc = "WTF?" - icon = 'icons/obj/weapons.dmi' - icon_state = "d20" - g_amt = 5000 - m_amt = 5000 - origin_tech = "materials=5;plasmatech=5;syndicate=5;programming=9"*/ diff --git a/code/modules/research/protolathe.dm b/code/modules/research/protolathe.dm index d37119fa05b..d20af1f36a6 100644 --- a/code/modules/research/protolathe.dm +++ b/code/modules/research/protolathe.dm @@ -131,22 +131,22 @@ Note: Must be placed west/left of and R&D console to function. if (disabled) return if (!linked_console) - user << "\The protolathe must be linked to an R&D console first!" + user << " The [src.name] must be linked to an R&D console first!" return 1 if (busy) - user << "The protolathe is busy. Please wait for completion of previous operation." + user << "The [src.name] is busy. Please wait for completion of previous operation." return 1 if (O.is_open_container()) return if (!istype(O, /obj/item/stack/sheet) || istype(O, /obj/item/stack/sheet/mineral/wood)) - user << "You cannot insert this item into the protolathe!" + user << "You cannot insert this item into the [src.name]!" return 1 if (stat) return 1 if(istype(O,/obj/item/stack/sheet)) var/obj/item/stack/sheet/S = O if (TotalMaterials() + S.perunit > max_material_storage) - user << "The protolathe's material bin is full. Please remove material before adding more." + user << "The [src.name]'s material bin is full. Please remove material before adding more." return 1 var/obj/item/stack/sheet/stack = O @@ -189,4 +189,4 @@ Note: Must be placed west/left of and R&D console to function. sleep(10) src.overlays -= "protolathe_[stack.name]" - return \ No newline at end of file + return