1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-11 14:49:24 +02:00
This commit is contained in:
Gerkiz 2023-09-17 16:29:04 +02:00
parent 305dae5277
commit 7208d5a829
2 changed files with 2 additions and 2 deletions

View File

@ -533,7 +533,7 @@ local function refresh_main_frame(data)
for i = 1, #chests do
if chests then
local source_chest = chests[i]
if type(chest) ~= 'string' and source_chest.share.name ~= '' and source_chest.share.name ~= source_chest.chest.unit_number then
if type(source_chest) ~= 'string' and source_chest.share.name ~= '' and source_chest.share.name ~= source_chest.chest.unit_number then
local flowlinker = chestlinker.add {type = 'flow'}
local chestitem =
flowlinker.add {

View File

@ -146,7 +146,7 @@ local function create_mini_camera_gui(player, target, zoom, render)
)
camera.style.minimal_width = 740
camera.style.minimal_height = 580
local player_data = create_player_data(player)
player_data = create_player_data(player)
player_data.camera_frame = camera
end