From d3776105e578a2872aae75ee87f6235cbe47823b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 6 Oct 2022 00:50:10 +0200 Subject: [PATCH] [MIRROR] Fixes the DOS tool [MDB IGNORE] (#16673) * Fixes the DOS tool (#70312) * Fixes the tablet's emagged 'DOS' app, which wasn't checking ID properly. * Fixes the DOS tool Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> --- .../modular_computers/file_system/programs/antagonist/dos.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/modular_computers/file_system/programs/antagonist/dos.dm b/code/modules/modular_computers/file_system/programs/antagonist/dos.dm index 0dcabc8b061..93323415b02 100644 --- a/code/modules/modular_computers/file_system/programs/antagonist/dos.dm +++ b/code/modules/modular_computers/file_system/programs/antagonist/dos.dm @@ -47,7 +47,7 @@ switch(action) if("PRG_target_relay") for(var/obj/machinery/ntnet_relay/R in SSnetworks.relays) - if("[R.uid]" == params["targid"]) + if(R.uid == params["targid"]) target = R break return TRUE