From 251e11a7e8978121fce2b94740397a5c4d9bf734 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Wed, 1 Jan 2025 20:57:11 +0100 Subject: [PATCH] Fix deathreporter not assigning zones (because it was "") --- Modules/DeathReporter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/DeathReporter.lua b/Modules/DeathReporter.lua index e4ad2b9..30e8cf3 100644 --- a/Modules/DeathReporter.lua +++ b/Modules/DeathReporter.lua @@ -45,7 +45,7 @@ function shared.DeathReporter.Init() end local zone = Heimdall_Data.config.deathReporter.zoneOverride - if not zone then + if zone == nil or zone == "" then zone = string.format("%s (%s)", GetZoneText(), GetSubZoneText()) end