several more fixes #2

Open
Ocawesome101 wants to merge 19 commits from Ocawesome101/LuPPC:master into master
Showing only changes of commit 193afd3853 - Show all commits

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