From 86649f8c01b8f4a5f4c9d27bdb6e9d1dd8623266 Mon Sep 17 00:00:00 2001 From: notnotmelon Date: Sat, 23 Nov 2024 09:38:01 -0600 Subject: [PATCH] The guar technology has been moved from logistics science to py science pack 2. --- changelog.txt | 8 +++++--- prototypes/technologies/guar.lua | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index bd4f1afa1..5ede4360c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -6,9 +6,11 @@ Date: ???? - Fixed incorrect crafting speed for fish farms MK02-MK04. - Moss MK02-MK04 breeding recipes are now significantly cheaper. - Fast wood forestry animation improvements: - - Animation now uses FSM to ensure no floating robots when the machine stops crafting. - - Animation no longer extents past the bounding box. - - Animation plays 2x faster. + Animation now uses FSM to ensure no floating robots when the machine stops crafting. + Animation no longer extents past the bounding box. + Animation plays 2x faster. + - The guar technology has been moved from logistics science to py science pack 2. + - The guar MK02 technology has been moved from py science pack 2 to chemical science. --------------------------------------------------------------------------------------------------- Version: 3.0.25 Date: 2024-11-20 diff --git a/prototypes/technologies/guar.lua b/prototypes/technologies/guar.lua index 01b3a419d..ad61aca09 100644 --- a/prototypes/technologies/guar.lua +++ b/prototypes/technologies/guar.lua @@ -4,7 +4,7 @@ TECHNOLOGY { icon = "__pyalienlifegraphics__/graphics/technology/guar-mk01.png", icon_size = 128, order = "c-a", - prerequisites = {"botany-mk02"}, + prerequisites = {"botany-mk02", "py-science-pack-mk02"}, effects = {}, unit = { count = 200, @@ -12,6 +12,7 @@ TECHNOLOGY { {"automation-science-pack", 3}, {"py-science-pack-1", 1}, {"logistic-science-pack", 1}, + {"py-science-pack-2", 1}, }, time = 50 } @@ -23,8 +24,8 @@ TECHNOLOGY { icon = "__pyalienlifegraphics__/graphics/technology/guar-mk02.png", icon_size = 128, order = "c-a", - prerequisites = {"guar"}, - dependencies = {"guar"}, + prerequisites = {"guar", "chemical-science-pack"}, + dependencies = {"guar", "chemical-science-pack"}, effects = {}, unit = { count = 250, @@ -33,6 +34,7 @@ TECHNOLOGY { {"py-science-pack-1", 1}, {"logistic-science-pack", 1}, {"py-science-pack-2", 1}, + {"chemical-science-pack", 1}, }, time = 50 }