forked from townforge/townforge
game: do not add spurious 0 amounts of every material in flag budget
This commit is contained in:
parent
897ceb0d89
commit
04e71ef13c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user