Added logging setting.

Added `en` locale translation.
This commit is contained in:
Filipe Rodrigues 2021-09-26 22:30:48 +01:00
parent 4610a3d485
commit cbf2ef36a1
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,13 @@
[mod-name]
example-mod=Example mod
[mod-description]
example-mod=Lightweight modular example mod with various features and compatibilities\n\nSee source: https://github.com/ZwerOxotnik/factorio-example-mod
[mod-setting-name]
lbn:log=Enable logging
[mod-setting-description]
lbn:log=Enables logging to the file log.

View File

@ -1 +1,11 @@
-- Settings
data:extend({
{
type = "bool-setting",
name = "lbn:log",
setting_type = "startup",
default_value = false,
order = "",
},
})