mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-29 12:16:37 +09:00
Cleaned Config Files
This commit is contained in:
20
config/file_loader.lua
Normal file
20
config/file_loader.lua
Normal file
@@ -0,0 +1,20 @@
|
||||
--- This contains a list of all files that will be loaded and the order they are loaded in
|
||||
-- to stop a file from loading add "--" in front of it, remove the "--" to have the file be loaded
|
||||
-- config files should be loaded after all modules are loaded
|
||||
-- core files should be required by modules and not be present in this list
|
||||
return {
|
||||
--'example.file_not_loaded',
|
||||
'modules.factorio-control', -- base factorio free play scenario
|
||||
-- Game Commands
|
||||
'modules.commands.me',
|
||||
'modules.commands.kill',
|
||||
'modules.commands.admin-chat',
|
||||
'modules.commands.tag',
|
||||
'modules.commands.teleport',
|
||||
'modules.commands.cheat-mode',
|
||||
'modules.commands.interface',
|
||||
'modules.commands.help',
|
||||
-- Config Files
|
||||
'config.command_auth_admin', -- commands tags with admin_only are blocked for non admins
|
||||
'config.permission_groups', -- loads some predefined permission groups
|
||||
}
|
||||
Reference in New Issue
Block a user