From c77806d846e20b7e7b918cf2cb67af193b40c766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sat, 10 Oct 2020 21:23:42 -0700 Subject: [PATCH] when am I gonna stop doing dumb shit --- MWSE/mods/celediel/NPCsGoHome/functions/processors.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MWSE/mods/celediel/NPCsGoHome/functions/processors.lua b/MWSE/mods/celediel/NPCsGoHome/functions/processors.lua index e8d0f5c..d0ec699 100644 --- a/MWSE/mods/celediel/NPCsGoHome/functions/processors.lua +++ b/MWSE/mods/celediel/NPCsGoHome/functions/processors.lua @@ -151,11 +151,11 @@ local function checkForMovedOrDisabledNPCs(cell) if badWeather then common.runtimeData.NPCs.movedBadWeather[homeData.ogPlaceName] = common.runtimeData.NPCs.movedBadWeather[homeData.ogPlaceName] or {} - common.runtimeData.NPCs.movedBadWeather[cell.id][npc.id] = homeData + common.runtimeData.NPCs.movedBadWeather[homeData.ogPlaceName][npc.id] = homeData else common.runtimeData.NPCs.moved[homeData.ogPlaceName] = common.runtimeData.NPCs.moved[homeData.ogPlaceName] or {} - common.runtimeData.NPCs.moved[cell.id][npc.id] = homeData + common.runtimeData.NPCs.moved[homeData.ogPlaceName][npc.id] = homeData end end end