mirror of
https://github.com/Kiritow/OpenComputerScripts.git
synced 2024-03-22 13:10:46 +08:00
Fix bugs in libevent
This commit is contained in:
parent
f1a816f9bf
commit
f9e006d53a
|
@ -211,7 +211,7 @@ local need_refresh=true
|
||||||
|
|
||||||
while true do
|
while true do
|
||||||
if(need_refresh) then
|
if(need_refresh) then
|
||||||
display(result,tb_display,begin_at,item_filter)
|
display(result,tb_display,craft_table,begin_at,item_filter)
|
||||||
need_refresh=false
|
need_refresh=false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -223,8 +223,12 @@ local function doInternalEventInit()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function TranslateEvent(raw_event)
|
local function TranslateEvent(raw_event)
|
||||||
|
if(raw_event==nil) then return nil end
|
||||||
|
|
||||||
local t={}
|
local t={}
|
||||||
local name=raw_event[1]
|
local name=raw_event[1]
|
||||||
|
if(name==nil) then return nil end
|
||||||
|
|
||||||
t["event"]=name
|
t["event"]=name
|
||||||
|
|
||||||
-- Standard Events
|
-- Standard Events
|
||||||
|
|
Loading…
Reference in New Issue
Block a user