1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

small performance tweak

This commit is contained in:
grilledham 2018-06-24 11:52:51 +01:00
parent 3191fc4134
commit 988c5f27a1

View File

@ -17,12 +17,12 @@ end
-- Associates data with the LuaGuiElement. If data is nil then removes the data
function Gui.set_data(element, data)
global.Gui_data[element.player_index .. ',' .. element.index] = data
global.Gui_data[element.player_index * 0x100000000 + element.index] = data
end
-- Gets the Associated data with this LuaGuiElement if any.
function Gui.get_data(element)
return global.Gui_data[element.player_index .. ',' .. element.index]
return global.Gui_data[element.player_index * 0x100000000 + element.index]
end
-- Removes data associated with LuaGuiElement and its children recursivly.