File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
GeneralsMD/Code/GameEngine/Source/GameNetwork
Generals/Code/GameEngine/Source/GameNetwork Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -666,7 +666,12 @@ void Network::processDestroyPlayerCommand(NetDestroyPlayerCommandMsg *msg)
666666 if (pPlayer)
667667 {
668668 GameMessage *msg = newInstance (GameMessage)(GameMessage::MSG_SELF_DESTRUCT);
669- msg->appendBooleanArgument (FALSE );
669+ #if RETAIL_COMPATIBLE_CRC
670+ const Bool transferAssets = FALSE ;
671+ #else
672+ const Bool transferAssets = TRUE ;
673+ #endif
674+ msg->appendBooleanArgument (transferAssets);
670675 msg->friend_setPlayerIndex (pPlayer->getPlayerIndex ());
671676 TheCommandList->appendMessage (msg);
672677 }
Original file line number Diff line number Diff line change @@ -666,7 +666,12 @@ void Network::processDestroyPlayerCommand(NetDestroyPlayerCommandMsg *msg)
666666 if (pPlayer)
667667 {
668668 GameMessage *msg = newInstance (GameMessage)(GameMessage::MSG_SELF_DESTRUCT);
669- msg->appendBooleanArgument (FALSE );
669+ #if RETAIL_COMPATIBLE_CRC
670+ const Bool transferAssets = FALSE ;
671+ #else
672+ const Bool transferAssets = TRUE ;
673+ #endif
674+ msg->appendBooleanArgument (transferAssets);
670675 msg->friend_setPlayerIndex (pPlayer->getPlayerIndex ());
671676 TheCommandList->appendMessage (msg);
672677 }
You can’t perform that action at this time.
0 commit comments