diff --git a/1.6/1.6/Assemblies/ArachnaeSwarm.dll b/1.6/1.6/Assemblies/ArachnaeSwarm.dll index 1ae0634..f6b13c1 100644 Binary files a/1.6/1.6/Assemblies/ArachnaeSwarm.dll and b/1.6/1.6/Assemblies/ArachnaeSwarm.dll differ diff --git a/1.6/1.6/Defs/AbilityDefs/ARA_Abilities.xml b/1.6/1.6/Defs/AbilityDefs/ARA_Abilities.xml index c19bd9b..a6eea81 100644 --- a/1.6/1.6/Defs/AbilityDefs/ARA_Abilities.xml +++ b/1.6/1.6/Defs/AbilityDefs/ARA_Abilities.xml @@ -72,7 +72,7 @@ - ARA_EggSpew + ARA_EggSpewBioforgeIncubator 工艺卵 UI/Commands/EggSpew diff --git a/1.6/1.6/Defs/JobDefs/ARA_Jobs_Interactive.xml b/1.6/1.6/Defs/JobDefs/ARA_Jobs_Interactive.xml index b745ae9..89ae943 100644 --- a/1.6/1.6/Defs/JobDefs/ARA_Jobs_Interactive.xml +++ b/1.6/1.6/Defs/JobDefs/ARA_Jobs_Interactive.xml @@ -2,7 +2,7 @@ - ARA_IncubateJob + ARA_StartInteractiveProduction ArachnaeSwarm.JobDriver_StartProduction 正在启动生产 TargetA. true diff --git a/1.6/1.6/Defs/Thing_building/ARA_InteractiveProducer.xml b/1.6/1.6/Defs/Thing_building/ARA_InteractiveProducer.xml index 2849bec..ed35939 100644 --- a/1.6/1.6/Defs/Thing_building/ARA_InteractiveProducer.xml +++ b/1.6/1.6/Defs/Thing_building/ARA_InteractiveProducer.xml @@ -49,12 +49,12 @@
  • Gun_ChainShotgun - 60000 + 60000 20
  • Gun_AssaultRifle - 60000 + 60000 15
  • @@ -73,20 +73,85 @@ True 18 23 + + 10 + 0.00001 +
  • - 13 - 28 - 0.00005 + 13 + 28 + 0.00005
  • CompHeatPusherPowered 6
  • - + 120 @@ -121,4 +186,4 @@ -
    \ No newline at end of file + diff --git a/Source/ArachnaeSwarm/CompInteractiveProducer.cs b/Source/ArachnaeSwarm/CompInteractiveProducer.cs index 8d65c8a..28228ea 100644 --- a/Source/ArachnaeSwarm/CompInteractiveProducer.cs +++ b/Source/ArachnaeSwarm/CompInteractiveProducer.cs @@ -193,7 +193,7 @@ namespace ArachnaeSwarm // When the float menu is clicked, we set the selected process on the comp, // so the JobDriver knows which process to start. this._selectedProcess = process; - Job job = JobMaker.MakeJob(DefDatabase.GetNamed("ARA_IncubateJob"), parent); + Job job = JobMaker.MakeJob(DefDatabase.GetNamed("ARA_StartInteractiveProduction"), parent); selPawn.jobs.TryTakeOrderedJob(job, JobTag.Misc); }); }