From 047ed8c0a6bde7adbfcd009784890e746744bcf4 Mon Sep 17 00:00:00 2001 From: Repede Date: Wed, 28 Feb 2018 22:55:59 -0500 Subject: [PATCH] woo --- code/modules/DMAPI/yawnDMAPI.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/DMAPI/yawnDMAPI.dm b/code/modules/DMAPI/yawnDMAPI.dm index 9518cf468b..87f7ecf331 100644 --- a/code/modules/DMAPI/yawnDMAPI.dm +++ b/code/modules/DMAPI/yawnDMAPI.dm @@ -17,7 +17,6 @@ /datum/server_tools_command/readfax/Run(sender, params) var/list/all_params = splittext(params, " ") var/faxid = all_params[1] - var/savefile/F = new() - var/faxfile = file("[config.fax_export_dir]/fax_[faxid].html") - var/faxmsg = F.ImportText("/",faxfile) + var/faxmsg = "" + file("[config.fax_export_dir]/fax_[faxid].html") >> faxmsg return "FAX: ```[url_encode(faxmsg)]```" \ No newline at end of file