From f0d9e9baea95fd8f7694e07fddd57a062d50ac20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Tue, 28 Jul 2020 22:25:32 -0700 Subject: [PATCH] don't intentionally put ' into the logs --- MWSE/mods/celediel/DoorRandomizer/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MWSE/mods/celediel/DoorRandomizer/main.lua b/MWSE/mods/celediel/DoorRandomizer/main.lua index aa96921..71169c5 100644 --- a/MWSE/mods/celediel/DoorRandomizer/main.lua +++ b/MWSE/mods/celediel/DoorRandomizer/main.lua @@ -81,7 +81,7 @@ local function pickCell(ogDest) log("%s is exterior, trying again...", cell.id) cell = pickCell(ogDest) elseif config.interiorExterior == common.cellTypes.match and not isTypeMatch(ogDest, cell) then - log("%s and %s aren't same cell type, trying again...", ogDest.id, cell.id) + log("%s and %s are not same cell type, trying again...", ogDest.id, cell.id) cell = pickCell(ogDest) end