From bb0ab90d643475ca7e0e98c9a66f92112c368c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sat, 22 Aug 2020 12:06:48 -0700 Subject: [PATCH] selfish functions --- MWSE/mods/celediel/NPCsGoHome/mcm.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MWSE/mods/celediel/NPCsGoHome/mcm.lua b/MWSE/mods/celediel/NPCsGoHome/mcm.lua index cffb8a1..9ad0b56 100644 --- a/MWSE/mods/celediel/NPCsGoHome/mcm.lua +++ b/MWSE/mods/celediel/NPCsGoHome/mcm.lua @@ -162,7 +162,7 @@ template:createExclusionsPage({ callback = (function() local CellNames = {} for cell, _ in pairs(tes3.dataHandler.nonDynamicData.cells) do - table.insert(CellNames, string.lower(cell)) + table.insert(CellNames, cell:lower()) end return CellNames end) @@ -172,7 +172,7 @@ template:createExclusionsPage({ callback = function() local factions = {} for _, faction in pairs(tes3.dataHandler.nonDynamicData.factions) do - table.insert(factions, string.lower(faction.id)) + table.insert(factions, faction.id:lower()) end return factions end @@ -182,7 +182,7 @@ template:createExclusionsPage({ callback = function() local classes = {} for _, class in pairs(tes3.dataHandler.nonDynamicData.classes) do - table.insert(classes, string.lower(class.id)) + table.insert(classes, class.id:lower()) end return classes end