From c87c88a68190853b9f61d5bfa2150c2e1086fe80 Mon Sep 17 00:00:00 2001 From: "ProjectKoi-Kalo\\Kalo" Date: Fri, 5 Sep 2025 12:57:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0key=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Keyed/InteractiveProducer_Keys.xml | 2 +- .../ARA_CompInteractiveProducer/CompInteractiveProducer.cs | 4 ++++ .../Documents/New_Component_Design.md | 0 .../{ArachnaeSwarm => Documents}/SpawnPawnFromList_Design.md | 0 4 files changed, 5 insertions(+), 1 deletion(-) rename New_Component_Design.md => Source/Documents/New_Component_Design.md (100%) rename Source/{ArachnaeSwarm => Documents}/SpawnPawnFromList_Design.md (100%) diff --git a/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/InteractiveProducer_Keys.xml b/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/InteractiveProducer_Keys.xml index 9ea8287..00392aa 100644 --- a/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/InteractiveProducer_Keys.xml +++ b/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/InteractiveProducer_Keys.xml @@ -14,7 +14,7 @@ 正在生产 {0} 剩余时间 预计品质 - 温度惩罚 未在生产 + 未孵化,需要阿拉克涅工艺种交互 \ No newline at end of file diff --git a/Source/ArachnaeSwarm/ARA_CompInteractiveProducer/CompInteractiveProducer.cs b/Source/ArachnaeSwarm/ARA_CompInteractiveProducer/CompInteractiveProducer.cs index f4370d8..f92d0be 100644 --- a/Source/ArachnaeSwarm/ARA_CompInteractiveProducer/CompInteractiveProducer.cs +++ b/Source/ArachnaeSwarm/ARA_CompInteractiveProducer/CompInteractiveProducer.cs @@ -226,6 +226,10 @@ namespace ArachnaeSwarm return sb.ToString().TrimEnd(); } + if (!InProduction) + { + return "ARA_NeedArachnaeToStartIncubation".Translate(); + } return null; } diff --git a/New_Component_Design.md b/Source/Documents/New_Component_Design.md similarity index 100% rename from New_Component_Design.md rename to Source/Documents/New_Component_Design.md diff --git a/Source/ArachnaeSwarm/SpawnPawnFromList_Design.md b/Source/Documents/SpawnPawnFromList_Design.md similarity index 100% rename from Source/ArachnaeSwarm/SpawnPawnFromList_Design.md rename to Source/Documents/SpawnPawnFromList_Design.md