Skip to content

Commit bbe0457

Browse files
committed
More accurate doc
1 parent 42698de commit bbe0457

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/client/graphics/layers/ControlPanel.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ export class ControlPanel extends LitElement implements Layer {
2424
private _maxTroops: number;
2525

2626
/**
27-
* Rounded total maximum troop capacity available to the player.
27+
* Maximum troops available to the player from territory tiles.
2828
*/
2929
@state()
3030
private _maxTroopsTerritory: number = 0;
3131

3232
/**
33-
* Rounded maximum troop capacity coming from cities.
33+
* Maximum troops available to the player from City units.
3434
*/
3535
@state()
3636
private _maxTroopsCity: number = 0;
3737

3838
/**
39-
* Estimated current troops that belong to territory-derived capacity.
39+
* Proportional allocation of troops that belong to territory-derived maximum troops.
4040
* This value is computed from the config.estimatedTroopsTerritory helper.
4141
*/
4242
@state()
4343
private _troopsTerritoryEstimate: number = 0;
4444

4545
/**
46-
* Estimated current troops that belong to city-derived capacity.
46+
* Proportional allocation of troops available to the player that belong to city-derived maximum troops.
4747
* This value is computed from the config.estimatedTroopsCity helper.
4848
*/
4949
@state()

0 commit comments

Comments
 (0)