mirror of
https://github.com/FlamedDogo99/EaglerMobile.git
synced 2024-11-21 11:36:05 -08:00
Fixed equals sign
This commit is contained in:
parent
f5e74945ec
commit
122d0e6f6e
|
@ -6,7 +6,7 @@
|
||||||
// @downloadURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
// @downloadURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
||||||
// @license Apache License 2.0 - http://www.apache.org/licenses/
|
// @license Apache License 2.0 - http://www.apache.org/licenses/
|
||||||
// @match https://eaglercraft.com/mc/*
|
// @match https://eaglercraft.com/mc/*
|
||||||
// @version 2.12
|
// @version 2.13
|
||||||
// @updateURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
// @updateURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
@ -84,7 +84,7 @@ function hiddenInputHandler (e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
window.addEventListener("keydown", function(e) {
|
window.addEventListener("keydown", function(e) {
|
||||||
if((e.key == null || e.keyCode == null || e.which = null) && !window.keyboardFix) {
|
if((e.key == null || e.keyCode == null || e.which == null) && !window.keyboardFix) {
|
||||||
window.keyboardFix = true;
|
window.keyboardFix = true;
|
||||||
keyEvent(window.lastKey, "keydown")
|
keyEvent(window.lastKey, "keydown")
|
||||||
keyEvent(window.lastKey, "keyup")
|
keyEvent(window.lastKey, "keyup")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user