1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-11-23 22:22:34 +02:00

luacheck more fixes

This commit is contained in:
Gerkiz
2021-03-24 20:14:55 +01:00
parent b582b3cb9b
commit e2a33f9f30
190 changed files with 526 additions and 727 deletions

View File

@@ -148,13 +148,13 @@ local function fish_in_space_gui(player)
progressbar.style.maximal_width = 100
progressbar.style.top_padding = 10
local label = frame.add({type = 'label', caption = global.fish_in_space .. '/' .. tostring(global.catplanet_goals[i + 1].goal)})
label = frame.add({type = 'label', caption = global.fish_in_space .. '/' .. tostring(global.catplanet_goals[i + 1].goal)})
label.style.font_color = {r = 0.33, g = 0.66, b = 0.9}
if global.catplanet_goals[i].rank then
local label = frame.add({type = 'label', caption = ' ~Rank~'})
label = frame.add({type = 'label', caption = ' ~Rank~'})
label.style.font_color = {r = 0.75, g = 0.75, b = 0.75}
local label = frame.add({type = 'label', caption = global.catplanet_goals[i].rank})
label = frame.add({type = 'label', caption = global.catplanet_goals[i].rank})
label.style.font = 'default-bold'
label.style.font_color = global.catplanet_goals[i].color
end