From a1096e9724776bc2601d5c3100db6bb1b8f701d8 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 17 Nov 2017 21:03:08 -0600 Subject: [PATCH] [MIRROR] Makes TGUI's reload.bat account for spaces in username (#3991) * Makes reload.bat account for spaces in username (#32768) * Makes TGUI's reload.bat account for spaces in username --- tgui/reload.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgui/reload.bat b/tgui/reload.bat index 55b769e2d7..3113036e62 100644 --- a/tgui/reload.bat +++ b/tgui/reload.bat @@ -3,7 +3,7 @@ REM Get the documents folder from the registry. for /f "tokens=3* delims= " %%a in ( 'reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Personal"' ) do ( - set documents=%%a + set documents=%%a %%b ) REM Copy assets to the BYOND cache cmd /c copy assets\* "%documents%\BYOND\cache" /y