From 5e528355396eb307c1c994a11f7dac6b2dabad65 Mon Sep 17 00:00:00 2001 From: Fira Date: Sun, 4 Jun 2023 14:41:30 +0100 Subject: [PATCH] walter fix --- code/_byond_version_compat.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_byond_version_compat.dm b/code/_byond_version_compat.dm index 880c50345323..f5ce60789626 100644 --- a/code/_byond_version_compat.dm +++ b/code/_byond_version_compat.dm @@ -52,7 +52,7 @@ /// fcopy will crash on 515 linux if given a non-existant file, instead of returning 0 like on 514 linux or 515 windows /// var case matches documentation for fcopy. /world/proc/__fcopy(Src, Dst) - if (!fexists(Src)) + if (istext(Src) && !fexists(Src)) return 0 return fcopy(Src, Dst)