From b9ccb5c93807d9f3d117968924ca95622ac57b38 Mon Sep 17 00:00:00 2001 From: notnotmelon Date: Sun, 19 Jan 2025 12:07:24 -0600 Subject: [PATCH] Updated graphic paths to use new pyindustrygraphics. --- prototypes/buildings/oil-derrick.lua | 8 ++++---- prototypes/buildings/tar-extractor.lua | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/prototypes/buildings/oil-derrick.lua b/prototypes/buildings/oil-derrick.lua index 842c4ce..9f90881 100644 --- a/prototypes/buildings/oil-derrick.lua +++ b/prototypes/buildings/oil-derrick.lua @@ -1,7 +1,7 @@ local function pipe_picture() return { north = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-up.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-up.png", priority = "extra-high", width = 128, height = 128, @@ -9,7 +9,7 @@ local function pipe_picture() shift = {0, 1}, }, south = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-down.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-down.png", priority = "extra-high", width = 128, height = 128, @@ -17,7 +17,7 @@ local function pipe_picture() shift = {0, -1}, }, west = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-left.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-left.png", priority = "extra-high", width = 128, height = 128, @@ -25,7 +25,7 @@ local function pipe_picture() shift = {1, 0}, }, east = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-right.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-right.png", priority = "extra-high", width = 128, height = 128, diff --git a/prototypes/buildings/tar-extractor.lua b/prototypes/buildings/tar-extractor.lua index 5918f3c..93f6790 100644 --- a/prototypes/buildings/tar-extractor.lua +++ b/prototypes/buildings/tar-extractor.lua @@ -1,7 +1,7 @@ local function pipe_picture() return { north = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-up.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-up.png", priority = "extra-high", width = 128, height = 128, @@ -9,7 +9,7 @@ local function pipe_picture() shift = {0, 1}, }, south = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-down.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-down.png", priority = "extra-high", width = 128, height = 128, @@ -17,7 +17,7 @@ local function pipe_picture() shift = {0, -1}, }, west = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-left.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-left.png", priority = "extra-high", width = 128, height = 128, @@ -25,7 +25,7 @@ local function pipe_picture() shift = {1, 0}, }, east = { - filename = "__pyindustry__/graphics/entity/niobium-pipe/pipe-to-ground-right.png", + filename = "__pyindustrygraphics__/graphics/entity/niobium-pipe/pipe-to-ground-right.png", priority = "extra-high", width = 128, height = 128,