From 0aff3b4365ef881faca0a9cc8352d0e5e0ef837d Mon Sep 17 00:00:00 2001 From: Ulukyn Date: Tue, 3 Mar 2020 18:26:00 +0100 Subject: [PATCH] Revert "Changed: Fix issue with webig dynChat " This reverts commit 14a375eea9f97cabb23199719cfa8022d9e907d1. --- code/ryzom/client/src/interface_v3/group_in_scene_bubble.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/ryzom/client/src/interface_v3/group_in_scene_bubble.cpp b/code/ryzom/client/src/interface_v3/group_in_scene_bubble.cpp index 075dd6f7d..063b56131 100644 --- a/code/ryzom/client/src/interface_v3/group_in_scene_bubble.cpp +++ b/code/ryzom/client/src/interface_v3/group_in_scene_bubble.cpp @@ -892,7 +892,7 @@ void CGroupInSceneBubbleManager::dynChatOpen (uint32 nBotUID, uint32 nBotName, c uint32 pos, j; for (pos = 0; pos < _DynBubbles.size(); ++pos) { - if (_DynBubbles[pos].BotUID == nBotUID && _DynBubbles[pos].BotName != 0) + if (_DynBubbles[pos].BotUID == nBotUID) break; } @@ -1005,7 +1005,7 @@ void CGroupInSceneBubbleManager::webIgChatOpen (uint32 nBotUID, string text, con uint32 pos, j; for (pos = 0; pos < _DynBubbles.size(); ++pos) { - if (_DynBubbles[pos].BotUID == nBotUID && _DynBubbles[pos].BotName == 0) + if (_DynBubbles[pos].BotUID == nBotUID) break; }