From e90027e3fcf254f2af3d5ed635583d60368aa303 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Mon, 18 Jun 2018 20:52:24 +0200 Subject: [PATCH] Ref T280, using "result.getPartsStatus().isReusedParts" --- src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp b/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp index fbf9f6241..920b638b9 100644 --- a/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp +++ b/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp @@ -1426,7 +1426,7 @@ namespace BlackSimPlugin const CAircraftParts parts = result; if (parts.getPartsDetails() != CAircraftParts::GuessedParts && !result.getPartsStatus().isSupportingParts()) { return false; } - if (this->isEqualLastSent(parts, simObject.getCallsign())) { return true; } + if (result.getPartsStatus().isReusedParts() || this->isEqualLastSent(parts, simObject.getCallsign())) { return true; } DataDefinitionRemoteAircraftPartsWithoutLights ddRemoteAircraftPartsWithoutLights(parts); // no init, all values will be set return this->sendRemoteAircraftPartsToSimulator(simObject, ddRemoteAircraftPartsWithoutLights, parts.getAdjustedLights());