mirror of
https://github.com/ENSL/NS.git
synced 2024-11-22 12:41:33 +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)
|
||||
{
|
||||
theTechNodes.processBalanceChange();
|
||||
UpdatedCosts = false;
|
||||
|
||||
if (theGameStarted && !UpdatedCosts)
|
||||
}
|
||||
else if (theGameStarted && !UpdatedCosts)
|
||||
{
|
||||
theTechNodes.processBalanceChange();
|
||||
UpdatedCosts = true;
|
||||
|
|
Loading…
Reference in a new issue