diff --git a/code/modules/integrated_electronics/core/printer.dm b/code/modules/integrated_electronics/core/printer.dm index 6db14304896d..3699f365a37e 100644 --- a/code/modules/integrated_electronics/core/printer.dm +++ b/code/modules/integrated_electronics/core/printer.dm @@ -296,7 +296,8 @@ program = null return if(istext(new_input)) - to_chat(usr, SPAN_NOTICE("[new_input] load blueprint pressed")) + to_chat(usr, SPAN_NOTICE("[new_input]")) + to_chat(usr, SPAN_NOTICE("Load blueprint pressed")) log_game("[usr] cloned circuit [new_input]") var/validation = SScircuit.validate_electronic_assembly(new_input) // Validation error codes are returned as text. diff --git a/code/modules/integrated_electronics/core/saved_circuits.dm b/code/modules/integrated_electronics/core/saved_circuits.dm index ca0ec7e64899..1638bc2734a7 100644 --- a/code/modules/integrated_electronics/core/saved_circuits.dm +++ b/code/modules/integrated_electronics/core/saved_circuits.dm @@ -257,7 +257,7 @@ var/assembly_path = all_assemblies[assembly_params["type"]] var/obj/item/electronic_assembly/assembly = cached_assemblies[assembly_path] if(!assembly) - return "Invalid assembly type." + return "Invalid assembly type: \"[assembly_params["type"]]\"." // Make sure the container is supposed to have that type of assembly. if(possible_container) @@ -295,7 +295,7 @@ var/component_path = all_components[component_params["type"]] var/obj/item/integrated_circuit/component = cached_components[component_path] if(!component) - return "Invalid component type." + return "Invalid component type: \"[component_params["type"]]\"." // Add temporary component to assembly_components list, to be used later when verifying the wires assembly_components.Add(component)