This commit is contained in:
ocawesome101 2021-06-04 16:27:42 -04:00
parent 300e2d1190
commit 193afd3853
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ function computer.signalTransformers.key_down(s, a, ascii, key, user)
inesc = true
return nil
elseif inesc then
if ascii < 48 and ascii > 57 and ascii ~= 59 then
if ascii < 48 and ascii > 57 and ascii ~= 59 and ascii ~= 91 then
inesc = false
key = escmap[ascii] or 0
ascii = 0
@ -132,7 +132,7 @@ function computer.signalTransformers.key_up(s, a, ascii, key, user)
inesc = true
return nil
elseif inesc then
if ascii < 48 and ascii > 57 and ascii ~= 59 then
if ascii < 48 and ascii > 57 and ascii ~= 59 and ascii ~= 91 then
inesc = false
key = escmap[ascii] or 0
ascii = 0