diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm index 1d654fc30f8..a2f8759f8e4 100644 --- a/code/game/machinery/computer/card.dm +++ b/code/game/machinery/computer/card.dm @@ -447,7 +447,7 @@ var/time_last_changed_position = 0 mode = text2num(href_list["mode_target"]) if("wipe_my_logs") - if(is_authenticated(usr)) + if(is_authenticated(usr) && is_centcom()) var/delcount = SSjobs.delete_log_records(scan.registered_name, FALSE) if(delcount) playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) diff --git a/code/modules/modular_computers/file_system/programs/command/card.dm b/code/modules/modular_computers/file_system/programs/command/card.dm index 2a13861e51b..81d5fb03823 100644 --- a/code/modules/modular_computers/file_system/programs/command/card.dm +++ b/code/modules/modular_computers/file_system/programs/command/card.dm @@ -282,7 +282,7 @@ mode = text2num(href_list["mode_target"]) if("PRG_wipe_my_logs") - if(is_authenticated(usr)) + if(is_authenticated(usr) && is_centcom) var/delcount = SSjobs.delete_log_records(scan.registered_name, FALSE) if(delcount) playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) diff --git a/nano/templates/card_prog.tmpl b/nano/templates/card_prog.tmpl index a22c2a3434c..8ce688e1997 100644 --- a/nano/templates/card_prog.tmpl +++ b/nano/templates/card_prog.tmpl @@ -68,7 +68,9 @@