game: do not add spurious 0 amounts of every material in flag budget

This commit is contained in:
Crypto City 2023-09-09 11:56:16 +00:00
parent 897ceb0d89
commit 04e71ef13c

View File

@ -7026,7 +7026,8 @@ void CryptoCityUrho3D::RemoveBlock(bool use_selection, bool top_level)
for (size_t i = 0; i < 256; ++i)
{
flag->budget[i] += blocks_recovered[i];
if (blocks_recovered[i])
flag->budget[i] += blocks_recovered[i];
}
flag->budget[ITEM_LABOUR] += labour_recovered;
flag->budget[ITEM_LABOUR] -= labour_expended;