From a4c5f57a2183108643169d07a8e176e0ae70989f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sat, 15 Aug 2020 17:14:54 -0700 Subject: [PATCH] whoops forgot this re: showing messages on cellchange --- MWSE/mods/celediel/NPCsGoHome/mcm.lua | 31 ++++++++++++++++----------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/MWSE/mods/celediel/NPCsGoHome/mcm.lua b/MWSE/mods/celediel/NPCsGoHome/mcm.lua index 826994d..cffb8a1 100644 --- a/MWSE/mods/celediel/NPCsGoHome/mcm.lua +++ b/MWSE/mods/celediel/NPCsGoHome/mcm.lua @@ -16,6 +16,18 @@ local page = template:createSideBarPage({ -- todo: categorize the options local category = page:createCategory(common.modName) +category:createDropdown({ + label = "Debug log level", + description = [[Enable this if you want to flood mwse.log with nonsense. Even small is huge.]], + options = { + {label = "None", value = common.logLevels.none}, + {label = "Small", value = common.logLevels.small}, + {label = "Medium", value = common.logLevels.medium}, + {label = "Large", value = common.logLevels.large} + }, + variable = createTableVar("logLevel") +}) + category:createYesNoButton({ label = "Lock doors and containers at night?", variable = createTableVar("lockDoors") @@ -124,16 +136,9 @@ category:createSlider({ variable = createTableVar("timerInterval") }) -category:createDropdown({ - label = "Debug log level", - description = [[Enable this if you want to flood mwse.log with nonsense. Even small is huge.]], - options = { - {label = "None", value = common.logLevels.none}, - {label = "Small", value = common.logLevels.small}, - {label = "Medium", value = common.logLevels.medium}, - {label = "Large", value = common.logLevels.large} - }, - variable = createTableVar("logLevel") +category:createYesNoButton({ + label = "Show messages when entering public spaces/NPC homes", + variable = createTableVar("showMessages") }) template:createExclusionsPage({ @@ -157,7 +162,7 @@ template:createExclusionsPage({ callback = (function() local CellNames = {} for cell, _ in pairs(tes3.dataHandler.nonDynamicData.cells) do - table.insert(CellNames, cell) + table.insert(CellNames, string.lower(cell)) end return CellNames end) @@ -167,7 +172,7 @@ template:createExclusionsPage({ callback = function() local factions = {} for _, faction in pairs(tes3.dataHandler.nonDynamicData.factions) do - table.insert(factions, faction.id) + table.insert(factions, string.lower(faction.id)) end return factions end @@ -177,7 +182,7 @@ template:createExclusionsPage({ callback = function() local classes = {} for _, class in pairs(tes3.dataHandler.nonDynamicData.classes) do - table.insert(classes, class.id) + table.insert(classes, string.lower(class.id)) end return classes end