diff --git a/code/modules/integrated_electronics/tools.dm b/code/modules/integrated_electronics/tools.dm index 67005c85e6..3835c8d5ed 100644 --- a/code/modules/integrated_electronics/tools.dm +++ b/code/modules/integrated_electronics/tools.dm @@ -26,11 +26,11 @@ mode = WIRING else if(mode == WIRING) if(io == selected_io) - user << "Wiring \the [selected_io.holder]'s [selected_io.name] into itself is rather pointless." + user << "Wiring \the [selected_io.holder]'s [selected_io.name] into itself is rather pointless." return if(io.io_type != selected_io.io_type) user << "Those two types of channels are incompatable. The first is a [selected_io.io_type], \ - while the second is a [io.io_type]." + while the second is a [io.io_type]." return selected_io.linked |= io io.linked |= selected_io @@ -55,7 +55,7 @@ else if(mode == UNWIRING) if(io == selected_io) user << "You can't wire a pin into each other, so unwiring \the [selected_io.holder] from \ - the same pin is rather moot." + the same pin is rather moot." return if(selected_io in io.linked) io.linked.Remove(selected_io) @@ -69,7 +69,7 @@ mode = UNWIRE else user << "\The [selected_io.holder]'s [selected_io.name] and \the [io.holder]'s \ - [io.name] are not connected." + [io.name] are not connected." return return @@ -89,7 +89,7 @@ user << "You decide not to disconnect the data channel." selected_io = null mode = UNWIRE - user << "You set \the [src] to [mode]." + user << "You set \the [src] to [mode]." #undef WIRE #undef WIRING