From 488fa340f9c971a3db6c4f020c48665ce8fb7d86 Mon Sep 17 00:00:00 2001 From: Ale2610 Date: Sat, 29 Aug 2015 19:11:44 +0200 Subject: [PATCH] Update sPhone.lua --- src/sPhone.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sPhone.lua b/src/sPhone.lua index 552c1ff..c960608 100644 --- a/src/sPhone.lua +++ b/src/sPhone.lua @@ -43,7 +43,7 @@ local function kernel() _G.sPhone = { version = "Alpha 1", user = "Unknown", - devMode = true, + devMode = false, } if fs.exists("/.sPhone/config/username") then @@ -556,6 +556,8 @@ if sPhone then printError("sPhone already started") return end +os.oldPullEvent = os.pullEvent +os.pullEvent = os.pullEventRaw local ok, error = pcall(kernel)