From f99e37c8bbc9f1a1de4a8e9b4ba365f4ebab7626 Mon Sep 17 00:00:00 2001 From: Edo Date: Wed, 8 Feb 2023 20:02:43 +0000 Subject: [PATCH] [Discord]: Fix conditional --- src/Components/Modules/Discord.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Modules/Discord.cpp b/src/Components/Modules/Discord.cpp index 5b7dd686..1797be20 100644 --- a/src/Components/Modules/Discord.cpp +++ b/src/Components/Modules/Discord.cpp @@ -114,7 +114,7 @@ namespace Components void Discord::preDestroy() { - if (Dedicated::IsEnabled() || ZoneBuilder::IsEnabled() || !Initialized_) + if (!Initialized_) { return; }