From 5115eb32ffb573d59a720533b5b731b6fcecc345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sun, 16 Aug 2020 16:34:18 -0700 Subject: [PATCH] clean up config, and moveNPCs by default --- MWSE/mods/celediel/NPCsGoHome/config.lua | 26 ++++++++++++++---------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/MWSE/mods/celediel/NPCsGoHome/config.lua b/MWSE/mods/celediel/NPCsGoHome/config.lua index 08073ee..4eb182b 100644 --- a/MWSE/mods/celediel/NPCsGoHome/config.lua +++ b/MWSE/mods/celediel/NPCsGoHome/config.lua @@ -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