mirror of
https://github.com/ENSL/NS.git
synced 2024-11-22 20:51:35 +00:00
Fix popup menu costs not updating for 2nd round.
This commit is contained in:
parent
7b6821929d
commit
b298eb9553
1 changed files with 4 additions and 2 deletions
|
@ -10074,9 +10074,11 @@ void AvHPlayer::UpdateTechNodes()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (UpdatedCosts && !theGameStarted)
|
if (UpdatedCosts && !theGameStarted)
|
||||||
|
{
|
||||||
|
theTechNodes.processBalanceChange();
|
||||||
UpdatedCosts = false;
|
UpdatedCosts = false;
|
||||||
|
}
|
||||||
if (theGameStarted && !UpdatedCosts)
|
else if (theGameStarted && !UpdatedCosts)
|
||||||
{
|
{
|
||||||
theTechNodes.processBalanceChange();
|
theTechNodes.processBalanceChange();
|
||||||
UpdatedCosts = true;
|
UpdatedCosts = true;
|
||||||
|
|
Loading…
Reference in a new issue