mirror of
https://github.com/Refactorio/RedMew.git
synced 2025-01-18 03:21:47 +02:00
Ensure trainsaviour is loaded first
This commit is contained in:
parent
30f1a023f6
commit
0d89e8b09c
@ -184,10 +184,6 @@ global.config = {
|
|||||||
donator_messages = {
|
donator_messages = {
|
||||||
enabled = true,
|
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 = {
|
player_colors = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
},
|
},
|
||||||
|
@ -17,6 +17,9 @@ require 'features.player_create'
|
|||||||
require 'features.user_groups'
|
require 'features.user_groups'
|
||||||
|
|
||||||
-- Feature modules, each can be disabled safely
|
-- Feature modules, each can be disabled safely
|
||||||
|
if config.train_saviour.enabled then
|
||||||
|
require 'features.train_saviour'
|
||||||
|
end
|
||||||
if config.autodeconstruct.enabled then
|
if config.autodeconstruct.enabled then
|
||||||
require 'features.autodeconstruct'
|
require 'features.autodeconstruct'
|
||||||
end
|
end
|
||||||
@ -35,9 +38,6 @@ end
|
|||||||
if config.donator_messages.enabled then
|
if config.donator_messages.enabled then
|
||||||
require 'features.donator_messages'
|
require 'features.donator_messages'
|
||||||
end
|
end
|
||||||
if config.train_saviour.enabled then
|
|
||||||
require 'features.train_saviour'
|
|
||||||
end
|
|
||||||
if config.fish_market.enabled then
|
if config.fish_market.enabled then
|
||||||
require 'features.fish_market'
|
require 'features.fish_market'
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user