From 2b5957f264753fa8258a4ae152b3ee4173fb69cf Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Tue, 24 Feb 2026 23:19:41 -0500 Subject: [PATCH] fix: typo --- modules/Performance.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Performance.lua b/modules/Performance.lua index ef7281c..92b20fe 100644 --- a/modules/Performance.lua +++ b/modules/Performance.lua @@ -139,9 +139,9 @@ function Performance:stopTimer(name) -- Check for warnings if elapsed > self.criticalThresholdMs then - self:addWarning(name, elapsed, "critical") + self:_addWarning(name, elapsed, "critical") elseif elapsed > self.warningThresholdMs then - self:addWarning(name, elapsed, "warning") + self:_addWarning(name, elapsed, "warning") end if self.logToConsole then