Added comments to config files

This commit is contained in:
Cooldude2606
2019-05-29 19:35:16 +01:00
parent 3ac9dd4874
commit 31e67f8a1c
6 changed files with 34 additions and 11 deletions

View File

@@ -1,13 +1,14 @@
-- config file for the repair command
return {
disallow = {
disallow = { -- items in this list will never be repaired
['loader']=true,
['fast-loader']=true,
['express-loader']=true,
['electric-energy-interface']=true,
['infinity-chest']=true
},
max_range=50,
allow_blueprint_repair=false,
allow_ghost_revive=true,
allow_heal_entities=true
max_range=50, -- the max range that can be used with the repair command
allow_blueprint_repair=false, -- when true will allow blueprints (things not destroied by biters) to be build instently using the repair command
allow_ghost_revive=true, -- when true will allow ghosts (things destoried by biters) to be build instently using the repair command
allow_heal_entities=true -- when true will heal entities to full health that are within range
}