From eeb129ccf24c6cae561d4bec9283ff950aa5482a Mon Sep 17 00:00:00 2001 From: RDW Date: Wed, 19 Jul 2023 19:48:16 +0200 Subject: [PATCH] Core: Added a slash command for toggling the progress bar --- Core/EventHandlers.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/EventHandlers.lua b/Core/EventHandlers.lua index d2f3f6fa..1f726e1e 100644 --- a/Core/EventHandlers.lua +++ b/Core/EventHandlers.lua @@ -676,6 +676,8 @@ function R:OnChatCommand(input) self:Print("Current map: " .. mapID .. " ~ " .. mapName) elseif strlower(input) == "purge" then -- TODO: This should be done automatically, no? self.Database:PurgeObsoleteEntries() + elseif strlower(input) == "progress" then + self.GUI:ToggleProgressBar() elseif strlower(input) == "test" then self.Testing:RunIntegrationTests() elseif strlower(input) == "profiling" then