weird formatting
This commit is contained in:
parent
7f5de615bf
commit
8c1637a659
1 changed files with 8 additions and 7 deletions
|
@ -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")
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue