Skip to content

Commit 7f45a07

Browse files
committed
Fix linux's "signal_w" startup crash
1 parent a5a4cfb commit 7f45a07

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

mods_2.0/041_underground-heat-pipe/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 2.0.4
3+
Date: 2025. 01. 09
4+
Info:
5+
- Fix linux's "signal_w" startup crash
6+
---------------------------------------------------------------------------------------------------
27
Version: 2.0.3
38
Date: 2025. 01. 06
49
Info:

mods_2.0/041_underground-heat-pipe/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "Underground heat pipe",
44
"description": "Not enough space above ground? underground has free real estate.",
55

6-
"version": "2.0.3",
6+
"version": "2.0.4",
77
"author": "Quezler",
88
"factorio_version": "2.0",
99

mods_2.0/041_underground-heat-pipe/prototypes/underground-heat-pipe.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function UndergroundHeatPipe.make(config)
161161
for _, even_or_odd in ipairs({"even", "odd"}) do -- adjacent heat pipes with the same name still try to visually form connections.
162162
local icons = table.deepcopy(uhp.icons)
163163
table.insert(icons, {
164-
icon = "__base__/graphics/icons/signal/signal_" .. direction_name:sub(1, 1) .. ".png",
164+
icon = "__base__/graphics/icons/signal/signal_" .. direction_name:sub(1, 1):upper() .. ".png",
165165
icon_size = 64,
166166
scale = 0.25,
167167
shift = {-8, -8}

0 commit comments

Comments
 (0)