clean up config, and moveNPCs by default

This commit is contained in:
Lilian Jónsdóttir 2020-08-16 16:34:18 -07:00
parent 6dfb1e4a86
commit 5115eb32ff

View file

@ -2,25 +2,29 @@ local common = require("celediel.NPCsGoHome.common")
-- todo: clean this up
local defaultConfig = {
disableNPCs = true,
lockDoors = true,
disableInteraction = true,
timerInterval = 7,
-- general settings
ignored = {
["Balmora, Caius Cosades' House"] = true,
["Publican"] = true,
},
worstWeather = tes3.weather.thunder,
keepBadWeatherNPCs = true,
closeTime = 21,
openTime = 7,
minimumOccupancy = 3,
waistWorks = true,
moveNPCs = false,
homelessWanderersToPublicHouses = false,
timerInterval = 7,
showMessages = true,
-- npc settings
disableNPCs = true,
moveNPCs = true,
keepBadWeatherNPCs = true,
worstWeather = tes3.weather.thunder,
factionIgnorePercentage = 0.66,
minimumOccupancy = 3,
homelessWanderersToPublicHouses = false,
disableInteraction = true,
-- door settings
lockDoors = true,
waistWorks = true,
-- debug settings
logLevel = common.logLevels.none,
factionIgnorePercentage = 0.66
}
local currentConfig