From e9de6a384c0bf622f035f0a5185cf527071c84fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sat, 10 Oct 2020 21:16:05 -0700 Subject: [PATCH] formatting --- MWSE/mods/celediel/NPCsGoHome/common.lua | 2 +- MWSE/mods/celediel/NPCsGoHome/functions/dataTables.lua | 3 ++- MWSE/mods/celediel/NPCsGoHome/functions/housing.lua | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MWSE/mods/celediel/NPCsGoHome/common.lua b/MWSE/mods/celediel/NPCsGoHome/common.lua index 0afba5c..2d2d858 100644 --- a/MWSE/mods/celediel/NPCsGoHome/common.lua +++ b/MWSE/mods/celediel/NPCsGoHome/common.lua @@ -7,7 +7,7 @@ this.version = "0.0.1" this.modInfo = "Move NPCs to their homes, or public houses (or just disable them), lock doors, " .. "and prevent interaction after hours, selectively disable NPCs in inclement weather" this.configPath = "NPCSGOHOME" -this.logString = this.modName:gsub("%s?%b()%s?","") +this.logString = this.modName:gsub("%s?%b()%s?", "") -- for config this.logLevels = {none = 0, small = 1, medium = 2, large = 3} diff --git a/MWSE/mods/celediel/NPCsGoHome/functions/dataTables.lua b/MWSE/mods/celediel/NPCsGoHome/functions/dataTables.lua index 4ea9d18..390a59c 100644 --- a/MWSE/mods/celediel/NPCsGoHome/functions/dataTables.lua +++ b/MWSE/mods/celediel/NPCsGoHome/functions/dataTables.lua @@ -39,7 +39,8 @@ this.createHomedNPCTableEntry = function(npc, home, startingPlace, isHome, posit pickedPosition = tes3vector3.new(pos[1], pos[2], pos[3]) pickedOrientation = tes3vector3.new(ori[1], ori[2], ori[3]) - log(common.logLevels.large, "[DTAB] Settled on position:%s, orientation:%s for %s in %s", pickedPosition, pickedOrientation, npc.object.name, id) + log(common.logLevels.large, "[DTAB] Settled on position:%s, orientation:%s for %s in %s", + pickedPosition,pickedOrientation, npc.object.name, id) local ogPosition = position and (tes3vector3.new(position.x, position.y, position.z)) or (npc.position and npc.position:copy() or zeroVector:copy()) diff --git a/MWSE/mods/celediel/NPCsGoHome/functions/housing.lua b/MWSE/mods/celediel/NPCsGoHome/functions/housing.lua index a8ca517..192fb02 100644 --- a/MWSE/mods/celediel/NPCsGoHome/functions/housing.lua +++ b/MWSE/mods/celediel/NPCsGoHome/functions/housing.lua @@ -74,7 +74,7 @@ this.pickHomeForNPC = function(cell, npc) for _, str in pairs(contextualNPCs) do if npc.object.id:match(str) then return end end -- time to pick the "home" - local name = npc.object.name:gsub(" the .*$","") -- remove "the whatever" from NPCs name + local name = npc.object.name:gsub(" the .*$", "") -- remove "the whatever" from NPCs name local city = cell.name and common.split(cell.name, ",")[1] or "wilderness" -- don't need to pick a home if we already have one