From 429d7af61f4af50911d5352273f6f00ade125573 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Fri, 23 May 2025 03:27:30 +0900 Subject: [PATCH] . --- PHI-CL/data.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PHI-CL/data.lua b/PHI-CL/data.lua index ba1af0c..6fcc2b2 100644 --- a/PHI-CL/data.lua +++ b/PHI-CL/data.lua @@ -517,11 +517,11 @@ if mods['space-age'] and ((settings.startup['PHI-SA'].value and settings.startup data.raw['character']['character']['mining_categories'] = {'basic-solid', 'hard-solid'} data.raw.resource['lithium-brine'].infinite = true - data.raw.resource['lithium-brine'].minimum = math.max(60000, data.raw.resource['lithium-brine'].minimum) - data.raw.resource['lithium-brine'].normal = math.max(300000, data.raw.resource['lithium-brine'].normal) - data.raw.resource['lithium-brine'].infinite_depletion_amount = math.min(10, data.raw.resource['lithium-brine'].infinite_depletion_amount) - data.raw.resource['fluorine-vent'].minimum = math.max(60000, data.raw.resource['fluorine-vent'].minimum) - data.raw.resource['fluorine-vent'].normal = math.max(300000, data.raw.resource['fluorine-vent'].normal) + data.raw.resource['lithium-brine'].minimum = math.max(60000, data.raw.resource['lithium-brine'].minimum or 0) + data.raw.resource['lithium-brine'].normal = math.max(300000, data.raw.resource['lithium-brine'].normal or 0) + data.raw.resource['lithium-brine'].infinite_depletion_amount = math.min(10, data.raw.resource['lithium-brine'].infinite_depletion_amount or 999) + data.raw.resource['fluorine-vent'].minimum = math.max(60000, data.raw.resource['fluorine-vent'].minimum or 0) + data.raw.resource['fluorine-vent'].normal = math.max(300000, data.raw.resource['fluorine-vent'].normal or 0) data.raw['space-platform-hub']['space-platform-hub'].platform_repair_speed_modifier = math.max(2, data.raw['space-platform-hub']['space-platform-hub'].platform_repair_speed_modifier) data.raw['space-platform-hub']['space-platform-hub'].inventory_size = math.max(119, data.raw['space-platform-hub']['space-platform-hub'].inventory_size)