diff --git a/code/WorkInProgress/detective_work.dm b/code/WorkInProgress/detective_work.dm index 5cd8555124b..402fa2c13dc 100644 --- a/code/WorkInProgress/detective_work.dm +++ b/code/WorkInProgress/detective_work.dm @@ -238,7 +238,7 @@ obj/machinery/computer/forensic_scanning temp += "    No blood found.
" else temp = "ERROR. Database not found!
" - temp += "
{delete}" + temp += "
{delete}" temp += "
{Print}" temp += "
{Return}" if("databaseprint") @@ -305,7 +305,7 @@ obj/machinery/computer/forensic_scanning temp += "    No blood found.
" else temp = "ERROR. Database not found!
" - temp += "
{Delete This Record}" + temp += "
{Delete This Record}" temp += "
{Print}" temp += "
{Return}" if("auxiliaryprint") @@ -427,6 +427,8 @@ obj/machinery/computer/forensic_scanning temp = "Print Failed: No Data" if("erase") scan_data = "" + if("delete_aux") + delete_record(text2num(href_list["identifier"])) if("delete") delete_dossier(text2num(href_list["identifier"])) if("cancel") diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 860d44cae7c..bf134463e4c 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -21,7 +21,6 @@ var/list/replacechars = list("'" = "","\"" = "",">" = "","<" = "","(" = "",")" = "") msg = sanitize_simple(msg, replacechars) - world << msg send2adminirc("#bs12admin","HELP: \"[src.key]: [msg]\"") if(tension_master) tension_master.new_adminhelp()