Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,8 @@ void FlightDeckBehavior::xfer( Xfer *xfer )
xfer->xferUnsignedInt( &m_startedProductionFrame );
xfer->xferUnsignedInt( &m_nextAllowedProductionFrame );
xfer->xferObjectID( &m_designatedTarget );
Int commandType;
// TheSuperHackers @bugfix bobtista 22/07/2026 Seed the temporary from the live command so saving writes the real order and does not overwrite m_designatedCommand with an uninitialized value.
Comment thread
bobtista marked this conversation as resolved.
Outdated
Int commandType = (Int)m_designatedCommand;
xfer->xferInt( &commandType );
m_designatedCommand = (AICommandType)commandType;
Comment thread
Caball009 marked this conversation as resolved.
xfer->xferCoord3D( &m_designatedPosition );
Expand Down
Loading