Skip to content

Commit

Permalink
Fixing accidental global functions
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Dec 18, 2024
1 parent 4307b17 commit 835d40e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boblogistics/prototypes/entity/storage-tank.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ table.insert(data.raw["storage-tank"]["storage-tank"].pictures.picture.sheets, 2
tint = { r = 0.65, g = 0.2, b = 0.15 },
})

function storage_tank_pictures(tint)
local function storage_tank_pictures(tint)
local graphics = {
picture = {
sheets = {
Expand Down Expand Up @@ -83,7 +83,7 @@ function storage_tank_pictures(tint)
return graphics
end

function storage_tank_all_pictures(tint)
local function storage_tank_all_pictures(tint)
local graphics = {
picture = {
sheets = {
Expand Down

0 comments on commit 835d40e

Please sign in to comment.