From 978731481d967c3e9462c8592e2de7deddfc6260 Mon Sep 17 00:00:00 2001 From: Alexander Zinov <33320473+sashkent3@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:32:46 +0200 Subject: [PATCH] Remove Linux path modification for file saving Removed Linux-specific path handling for file saving. --- defsave/defsave.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/defsave/defsave.lua b/defsave/defsave.lua index 4d94987..c80c315 100644 --- a/defsave/defsave.lua +++ b/defsave/defsave.lua @@ -105,11 +105,6 @@ function M.get_file_path(file) print("DefSave: Warning attempting to get a path for a nil file") return nil end - if M.sysinfo.system_name == "Linux" then - -- For Linux we must modify the default path to make Linux users happy - local appname = "config/" .. tostring(M.appname) - return sys.get_save_file(appname, file) - end if html5 then -- For HTML5 there's no need to get the full path return M.appname .. "_" .. file