From dde629b97adbdf25d0927bfc1dc2b5e6f691866e Mon Sep 17 00:00:00 2001 From: Austin Hicks Date: Mon, 9 Dec 2024 21:50:36 -0800 Subject: [PATCH] fa-info: announce when pipelines are overextended --- scripts/fa-info.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/fa-info.lua b/scripts/fa-info.lua index e14190e8..a187c517 100644 --- a/scripts/fa-info.lua +++ b/scripts/fa-info.lua @@ -189,6 +189,8 @@ local function ent_info_important_statuses(ctx) ctx.message:fragment({ "fa.ent-info-input-missing" }) elseif status == stat.full_output or status == stat.full_burnt_result_output then ctx.message:fragment({ "fa.ent-info-output-full" }) + elseif status == defines.entity_status.pipeline_overextended then + ctx.message:fragment({ "entity-status.pipeline-overextended" }) end end end