1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-11-14 22:48:05 +11:00

Make Delete also able to kill tasks in app-taskmgr

This commit is contained in:
20kdc 2018-04-17 18:08:03 +01:00
parent d808885c59
commit a9670637d1

View File

@ -78,7 +78,7 @@ while true do
end end
if n[3] == "key" then if n[3] == "key" then
if n[6] then if n[6] then
if n[4] == 8 then if n[4] == 8 or n[4] == 127 then
if consistentProcList[camY] then if consistentProcList[camY] then
kill(consistentProcList[camY][1]) kill(consistentProcList[camY][1])
end end