Merge branch 'ryzom/ark/features' into atys

fix-menu-scroll
Ulukyn 5 years ago
commit 523c07d9d9

@ -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)
if (_DynBubbles[pos].BotUID == nBotUID && _DynBubbles[pos].BotName != 0)
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)
if (_DynBubbles[pos].BotUID == nBotUID && _DynBubbles[pos].BotName == 0)
break;
}

Loading…
Cancel
Save