From 07d5e701af198b82d14a815b5a8375cd25360b80 Mon Sep 17 00:00:00 2001 From: Luca Haneklau Date: Wed, 6 Jun 2018 19:34:35 +0200 Subject: [PATCH] Fixes #2283 Don't require a vessel to be in PRELAUNCH situation for a bootfile to be copied to the vessels HardDist --- src/kOS/Module/kOSProcessor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kOS/Module/kOSProcessor.cs b/src/kOS/Module/kOSProcessor.cs index b4ff303c0..75a2258f8 100644 --- a/src/kOS/Module/kOSProcessor.cs +++ b/src/kOS/Module/kOSProcessor.cs @@ -460,8 +460,8 @@ public void InitObjects() } var path = BootFilePath; - // populate it with the boot file, but only if using a new disk and in PRELAUNCH situation: - if (vessel.situation == Vessel.Situations.PRELAUNCH && path != null && !SafeHouse.Config.StartOnArchive) + // populate it with the boot file, but only if using a new disk: + if (path != null && !SafeHouse.Config.StartOnArchive) { var bootVolumeFile = Archive.Open(BootFilePath) as VolumeFile; if (bootVolumeFile != null)