From 4975def1133842d58ef57e6c95a811d5479ceca4 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Sat, 19 Jan 2019 12:18:53 +0300 Subject: [PATCH] aefae --- Libraries/Paths.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Paths.lua b/Libraries/Paths.lua index c4b6f42f..6aee956a 100755 --- a/Libraries/Paths.lua +++ b/Libraries/Paths.lua @@ -26,7 +26,7 @@ paths.system.applicationSettings = paths.system.applications .. "Settings.app/Ma function paths.create(what) for _, path in pairs(what) do if path:sub(-1, -1) == "/" then - filesystem.makeDirectory(path) + require("Filesystem").makeDirectory(path) end end end