From 8e2da49b84f5f0f4be29cb44fe88594150c26019 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Thu, 10 Oct 2013 04:06:49 +0000 Subject: [PATCH] - added another item to crc check to try to track out of synch --- source/glest_game/type_instances/unit.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/glest_game/type_instances/unit.cpp b/source/glest_game/type_instances/unit.cpp index b008a587..b4971a43 100644 --- a/source/glest_game/type_instances/unit.cpp +++ b/source/glest_game/type_instances/unit.cpp @@ -5245,6 +5245,10 @@ Checksum Unit::getCRC() { } } + if(this->networkCRCParticleLogInfo != "") { + crcForUnit.addString(this->networkCRCParticleLogInfo); + } + return crcForUnit; }