From 46cd8b111dcc800364ea2b3bf3a51460bcc86f0e Mon Sep 17 00:00:00 2001 From: Eternal-Study <165338259+Eternal-Study@users.noreply.github.com> Date: Sat, 29 Jun 2024 20:28:22 -0400 Subject: [PATCH] Water to Salt + River Water Recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This pull requests adds a Water to River Water reactor recipe. If it detects a farming:salt node (as found in the Farming Redo mod) then it adds salt to the powder group, allowing it to be stored in silos, and changes the recipe to Water → Salt with River Water as a waste product. It should be noted that issue [insert issue number here] must be resolved to implement this pull request, as otherwise nodes cannot be loaded into the silo, even if they are in the powder group. This pull request was tested with pull request [insert pull request number] implemented. Using another solution to issue [insert issue number here] may require updates to the pull request. I release this code under the terms of AGPL v3, and transfer copyright to Joachim Stolberg. --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index f359717..1dfd234 100644 --- a/init.lua +++ b/init.lua @@ -3,7 +3,7 @@ TechAge ======= - Copyright (C) 2019-2023 Joachim Stolberg + Copyright (C) 2019-2024 Joachim Stolberg AGPL v3 See LICENSE.txt for more information @@ -394,6 +394,7 @@ dofile(MP.."/items/cracking.lua") dofile(MP.."/items/ceramic.lua") dofile(MP.."/items/basalt.lua") dofile(MP.."/items/moreblocks.lua") +dofile(MP.."/items/salt.lua") -- Carts dofile(MP.."/carts/tank_cart.lua")