diff --git a/worldeditadditions_core/utils/path.lua b/worldeditadditions_core/utils/path.lua index 21f1b76..34fe3e9 100644 --- a/worldeditadditions_core/utils/path.lua +++ b/worldeditadditions_core/utils/path.lua @@ -38,9 +38,9 @@ end -- @example Basic usage -- local path = file_path("C:\\Users", "me", "/Documents/code.lua") path.join = function( ... ) - local pathlets = { ... } local ok, err = check( ... ) if not ok then return false, err end + local pathlets = { ... } return path.norm(table.concat(pathlets, path.sep)) end