weird formatting

This commit is contained in:
Lilian Jónsdóttir 2021-09-11 16:53:41 -07:00
parent 7f5de615bf
commit 8c1637a659

View file

@ -157,15 +157,16 @@ template:createExclusionsPage({
description = "Members of these factions will not help the player in combat", description = "Members of these factions will not help the player in combat",
showAllBlocked = false, showAllBlocked = false,
filters = { filters = {
{ label = "Factions", callback = function() {
local factions = {} label = "Factions",
callback = function()
local factions = {}
for _, faction in pairs(tes3.dataHandler.nonDynamicData.factions) do for _, faction in pairs(tes3.dataHandler.nonDynamicData.factions) do table.insert(factions, faction.id) end
table.insert(factions, faction.id)
return factions
end end
}
return factions
end }
}, },
variable = createTableVar("ignoredFactions") variable = createTableVar("ignoredFactions")
}) })