From 3f16384d05ab0ffa28cd27a97bbfbbfb77111dbd Mon Sep 17 00:00:00 2001 From: notnotmelon Date: Fri, 29 Nov 2024 10:51:28 -0600 Subject: [PATCH] Fixed various loader outputs would always output to the left side of the belt. --- changelog.txt | 6 ++++++ info.json | 4 ++-- prototypes/buildings/classifier.lua | 2 +- prototypes/buildings/ground-borer.lua | 2 +- prototypes/buildings/sand-extractor.lua | 2 +- prototypes/buildings/soil-extractor.lua | 2 +- prototypes/buildings/wpu.lua | 2 +- 7 files changed, 13 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index 667d1343..bcc66cb9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 3.0.26 +Date: 2024-11-29 + Changes: + - Fixed various loader outputs would always output to the left side of the belt. + - Decreased min factorio version from 2.0.22 to 2.0.21 +--------------------------------------------------------------------------------------------------- Version: 3.0.25 Date: 2024-11-29 Changes: diff --git a/info.json b/info.json index dc74b93d..484922b4 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "pycoalprocessing", - "version": "3.0.25", + "version": "3.0.26", "factorio_version": "2.0", "title": "Pyanodons Coal Processing", "author": "Pyanodon, Nexela, Kingarthur, notnotmelon, Mootykins, ShadowGlass, Archezekiel, Quintuple", @@ -8,7 +8,7 @@ "homepage": "https://mods.factorio.com/mods/pyanodon/pycoalprocessing", "description": "Extends and overhauls Factorio's burner phase. Use realistic oil and coal processes to create advanced products. Functions as the core and library for the rest of the pY mods.", "dependencies": [ - "base >= 2.0.22", + "base >= 2.0.21", "~ pycoalprocessinggraphics >= 3.0.0", "~ pypostprocessing >= 3.0.0", "(?) DiscoScience", diff --git a/prototypes/buildings/classifier.lua b/prototypes/buildings/classifier.lua index 3b461a58..88306b67 100644 --- a/prototypes/buildings/classifier.lua +++ b/prototypes/buildings/classifier.lua @@ -43,7 +43,7 @@ for i = 1, 4 do minable = {mining_time = 1, result = name}, fast_replaceable_group = "classifier", max_health = 400 * i, - vector_to_place_result = {0.0, 4.0}, + vector_to_place_result = {0.0, 3.51}, corpse = "big-remnants", dying_explosion = "medium-explosion", collision_box = {{-3.4, -3.4}, {3.4, 3.4}}, diff --git a/prototypes/buildings/ground-borer.lua b/prototypes/buildings/ground-borer.lua index 4c367ad4..88a87b43 100644 --- a/prototypes/buildings/ground-borer.lua +++ b/prototypes/buildings/ground-borer.lua @@ -59,7 +59,7 @@ for i = 1, 4 do pollution = 3 * i }, }, - vector_to_place_result = {5.0, 0}, + vector_to_place_result = {4.51, 0}, energy_usage = (1.25 * i) .. "MW", graphics_set = { animation = { diff --git a/prototypes/buildings/sand-extractor.lua b/prototypes/buildings/sand-extractor.lua index 74f3c1bf..800f7a14 100644 --- a/prototypes/buildings/sand-extractor.lua +++ b/prototypes/buildings/sand-extractor.lua @@ -40,7 +40,7 @@ for i = 1, 4 do name = name, icon = icon, icon_size = icon_size, - vector_to_place_result = {0.0, 3.5}, + vector_to_place_result = {0.0, 3.01}, flags = {"placeable-neutral", "player-creation"}, minable = {mining_time = 1, result = name}, fast_replaceable_group = "sand-extractor", diff --git a/prototypes/buildings/soil-extractor.lua b/prototypes/buildings/soil-extractor.lua index 47ec75d0..ad752864 100644 --- a/prototypes/buildings/soil-extractor.lua +++ b/prototypes/buildings/soil-extractor.lua @@ -54,7 +54,7 @@ for i = 1, 4 do name = name, icon = icon, icon_size = icon_size, - vector_to_place_result = {0.0, 4.0}, + vector_to_place_result = {0.0, 3.51}, flags = {"placeable-neutral", "player-creation"}, minable = {mining_time = 1, result = name}, fast_replaceable_group = "soil-extractor", diff --git a/prototypes/buildings/wpu.lua b/prototypes/buildings/wpu.lua index fbbec925..13626858 100644 --- a/prototypes/buildings/wpu.lua +++ b/prototypes/buildings/wpu.lua @@ -44,7 +44,7 @@ for i = 1, 4 do minable = {mining_time = 1, result = name}, fast_replaceable_group = "wpu", max_health = 800 * i, - vector_to_place_result = {0.0, 3.5}, + vector_to_place_result = {0.0, 3.01}, corpse = "medium-remnants", dying_explosion = "medium-explosion", collision_box = {{-2.8, -2.8}, {2.8, 2.8}},