From 23d758cc75f6f688d3e2fc21678c349bbfe740cf Mon Sep 17 00:00:00 2001 From: TsT Date: Wed, 27 Jul 2016 23:35:55 +0200 Subject: [PATCH] missing local prefix --- client/lua-corona/noobhub.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/lua-corona/noobhub.lua b/client/lua-corona/noobhub.lua index d2adac8..a91a504 100644 --- a/client/lua-corona/noobhub.lua +++ b/client/lua-corona/noobhub.lua @@ -87,7 +87,7 @@ noobhub = { local got_something_new = false while true do - skt, e, p = v:receive() + local skt, e, p = v:receive() if (skt) then self.buffer = self.buffer .. skt; got_something_new=true; end if (p) then self.buffer = self.buffer .. p; got_something_new=true; end if (not skt) then break; end @@ -137,4 +137,4 @@ noobhub = { return self end -- /new -} \ No newline at end of file +}