diff --git a/config.lua b/config.lua index 1ee23ed3..22d23e5d 100644 --- a/config.lua +++ b/config.lua @@ -184,10 +184,6 @@ global.config = { donator_messages = { enabled = true, }, - -- saves players' lives if they have a small-plane in their inventory, also adds the small-plan to the market - train_saviour = { - enabled = true, - }, player_colors = { enabled = true, }, diff --git a/control.lua b/control.lua index b2955045..72021176 100644 --- a/control.lua +++ b/control.lua @@ -17,6 +17,9 @@ require 'features.player_create' require 'features.user_groups' -- Feature modules, each can be disabled safely +if config.train_saviour.enabled then + require 'features.train_saviour' +end if config.autodeconstruct.enabled then require 'features.autodeconstruct' end @@ -35,9 +38,6 @@ end if config.donator_messages.enabled then require 'features.donator_messages' end -if config.train_saviour.enabled then - require 'features.train_saviour' -end if config.fish_market.enabled then require 'features.fish_market' end