We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Right clicking another character to put name in whisper target does not work
To Reproduce Steps to reproduce the behavior:
Expected behavior Right clicking another character should copy the name
Note Right clicking on the name on the chat history works, but not when right clicking on char itself
The text was updated successfully, but these errors were encountered:
From the code, it seems LBUTTON is used. Can anybody confirm if it should be left click or right click?
auto const releaseMouse = SEASON3B::IsRelease(VK_LBUTTON); if (SelectedCharacter >= 0 && (IsVisible() && releaseMouse)) { auto const character = &CharactersClient[SelectedCharacter]; if (character->Object.Kind == KIND_PLAYER && !gMapManager.InChaosCastle() && !(::IsStrifeMap(gMapManager.WorldActive) && Hero->m_byGensInfluence != character->m_byGensInfluence)) { SetWhsprID(character->ID); } }
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Right clicking another character to put name in whisper target does not work
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Right clicking another character should copy the name
Note
Right clicking on the name on the chat history works, but not when right clicking on char itself
The text was updated successfully, but these errors were encountered: