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",
showAllBlocked = false,
filters = {
{ label = "Factions", callback = function()
{
label = "Factions",
callback = function()
local factions = {}
for _, faction in pairs(tes3.dataHandler.nonDynamicData.factions) do
table.insert(factions, faction.id)
end
for _, faction in pairs(tes3.dataHandler.nonDynamicData.factions) do table.insert(factions, faction.id) end
return factions
end }
end
}
},
variable = createTableVar("ignoredFactions")
})