1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-15 00:05:02 +02:00

Town: update appearance in applyGs to avoid desyncs. Fix issue 2464

Netpacks NewStructures and RazeStructures
This commit is contained in:
Arseniy Shestakov
2016-08-24 05:15:04 +03:00
parent 25a68c3ca1
commit 5a387cdaf1
2 changed files with 4 additions and 4 deletions

View File

@ -416,8 +416,6 @@ void NewStructures::applyCl( CClient *cl )
CGTownInstance *town = GS(cl)->getTown(tid);
for(const auto & id : bid)
{
town->updateAppearance();
if(vstd::contains(cl->playerint,town->tempOwner))
cl->playerint[town->tempOwner]->buildChanged(town,id,1);
}
@ -427,8 +425,6 @@ void RazeStructures::applyCl (CClient *cl)
CGTownInstance *town = GS(cl)->getTown(tid);
for(const auto & id : bid)
{
town->updateAppearance();
if(vstd::contains (cl->playerint,town->tempOwner))
cl->playerint[town->tempOwner]->buildChanged (town,id,2);
}