From a6a3c76b8df172daf9346cc4291d8788c9194686 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sun, 19 Apr 2026 16:17:18 +0200 Subject: [PATCH] gameplay & groups are also not needed [skip ci] --- system/src/Server/TOML/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Server/TOML/Config.php b/system/src/Server/TOML/Config.php index cdfa678e..c29d78e8 100644 --- a/system/src/Server/TOML/Config.php +++ b/system/src/Server/TOML/Config.php @@ -15,7 +15,7 @@ class Config $files = glob($path . '*.toml'); // filter files we don't need - $ignore = ['account_manager', 'mounts', 'object_pools', 'outfits', 'scripts']; + $ignore = ['account_manager', 'gameplay', 'groups', 'mounts', 'object_pools', 'outfits', 'scripts']; $files = array_filter($files, function ($file) use ($ignore) { foreach ($ignore as $item) { if (str_contains($file, $item)) {