From 78d2217354066f1fa78d64274b34549966e6b604 Mon Sep 17 00:00:00 2001 From: TheEt1234 Date: Sat, 16 Aug 2025 13:42:28 +0200 Subject: [PATCH] Actually remove core.file_exists --- builtin/common/misc_helpers.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/builtin/common/misc_helpers.lua b/builtin/common/misc_helpers.lua index e698a6a416..07fcb52fe3 100644 --- a/builtin/common/misc_helpers.lua +++ b/builtin/common/misc_helpers.lua @@ -876,8 +876,3 @@ function core.parse_coordinates(x, y, z, relative_to) return rx and ry and rz and { x = rx, y = ry, z = rz } end -function core.file_exists(path) - local file = io.open(path, "r") - if file then file:close() return true end - return false -end