From 3b0858cdacc6a1ad7eb944b946f106bc0f4750af Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 17 Sep 2021 08:12:52 +0200 Subject: [PATCH] Don't show xp bar when chat is open --- Source/qol/xpbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/qol/xpbar.cpp b/Source/qol/xpbar.cpp index bc21d9b13..49088d55c 100644 --- a/Source/qol/xpbar.cpp +++ b/Source/qol/xpbar.cpp @@ -67,7 +67,7 @@ void FreeXPBar() void DrawXPBar(const Surface &out) { - if (!sgOptions.Gameplay.bExperienceBar) + if (!sgOptions.Gameplay.bExperienceBar || talkflag) return; const auto &player = Players[MyPlayerId];