mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Fix handshake satyhing on when release "x" if Ctrl or similar pressed
This commit is contained in:
parent
95bfacb850
commit
5e19410293
1 changed files with 1 additions and 2 deletions
|
@ -898,8 +898,7 @@
|
|||
}
|
||||
}
|
||||
function keyReleaseEvent(event) {
|
||||
if ((event.text.toUpperCase() === "X") && !event.isAutoRepeat && !event.isShifted && !event.isMeta && !event.isControl
|
||||
&& !event.isAlt) {
|
||||
if (event.text.toUpperCase() === "X" && !event.isAutoRepeat) {
|
||||
updateTriggers(0.0, true, Controller.Standard.RightHand);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue