Skip to content

Commit 2a6753d

Browse files
committed
Bump version
1 parent ea8875b commit 2a6753d

File tree

5 files changed

+33
-10
lines changed

5 files changed

+33
-10
lines changed

mods_2.0/047_advanced-centrifuge/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 2.2.4
3+
Date: 2025-01-21
4+
Compatibility:
5+
- Defined two front facing fluid connections for other mods to use. (south side, cannot rotate)
6+
---------------------------------------------------------------------------------------------------
27
Version: 2.2.3
38
Date: 2025-01-21
49
Compatibility:

mods_2.0/047_advanced-centrifuge/data-updates.lua

Lines changed: 0 additions & 7 deletions
This file was deleted.
Loading

mods_2.0/047_advanced-centrifuge/info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "advanced-centrifuge",
3-
"version": "2.2.3",
3+
"version": "2.2.4",
44
"title": "Advanced Centrifuge",
55
"description": "An advanced centrifuge, to fill in the gap of advanced buildings for Krastorio 2",
66
"author": "kiratu11",
@@ -12,7 +12,7 @@
1212
"? space-age",
1313
"? Krastorio2",
1414
"? space-exploration",
15-
"? Cerys-Moon-of-Fulgora > 0.8.13",
15+
"? Cerys-Moon-of-Fulgora",
1616
"? atan-nuclear-science"
1717
]
1818
}

mods_2.0/047_advanced-centrifuge/prototypes/entities/buildings/advanced-centrifuge.lua

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ if mods["space-exploration"] then
99
light_tint = {r = 1.0, g = 1.0, b = 1.0}
1010
end
1111

12+
local pipe_picture = assembler3pipepictures()
13+
pipe_picture.south.filename = "__advanced-centrifuge__/graphics/advanced-centrifuge/advanced-centrifuge-pipe-S.png"
14+
1215
data:extend({
1316
{
1417
type = "assembling-machine",
1518
name = "k11-advanced-centrifuge",
1619
icon = "__advanced-centrifuge__/graphics/advanced-centrifuge/advanced-centrifuge-icon.png",
17-
flags = { "placeable-neutral", "placeable-player", "player-creation" },
20+
flags = { "placeable-neutral", "placeable-player", "player-creation", "not-rotatable" },
1821
minable = { mining_time = 1, result = "k11-advanced-centrifuge" },
1922
max_health = 1000,
2023
corpse = "nuclear-reactor-remnants",
@@ -138,6 +141,28 @@ data:extend({
138141
close_sound = sounds.machine_close,
139142
vehicle_impact_sound = sounds.generic_impact,
140143
damaged_trigger_effect = hit_effects.entity(),
144+
145+
fluid_boxes_off_when_no_fluid_recipe = true,
146+
fluid_boxes = {
147+
{
148+
production_type = "input",
149+
pipe_picture = pipe_picture,
150+
pipe_covers = pipecoverspictures(),
151+
volume = 1000,
152+
pipe_connections = {
153+
{flow_direction = "input", direction = defines.direction.south, position = { -2, 3 }},
154+
},
155+
},
156+
{
157+
production_type = "output",
158+
pipe_picture = pipe_picture,
159+
pipe_covers = pipecoverspictures(),
160+
volume = 1000,
161+
pipe_connections = {
162+
{flow_direction = "output", direction = defines.direction.south, position = { 2, 3 }},
163+
},
164+
},
165+
}
141166
}
142167
})
143168

0 commit comments

Comments
 (0)