diff options
author | jbion <joffrey.bion@amadeus.com> | 2019-02-26 12:23:44 +0100 |
---|---|---|
committer | jbion <joffrey.bion@amadeus.com> | 2019-02-26 12:23:54 +0100 |
commit | 818fa8a1eb5db9b578933bc9defad2c400138fed (patch) | |
tree | 0e347b6d0327201a6700051ed8af52d423a75023 /frontend/src/components/game/GameScene.jsx | |
parent | Increase space between resources in production bar (diff) | |
download | seven-wonders-818fa8a1eb5db9b578933bc9defad2c400138fed.tar.gz seven-wonders-818fa8a1eb5db9b578933bc9defad2c400138fed.tar.bz2 seven-wonders-818fa8a1eb5db9b578933bc9defad2c400138fed.zip |
Add gold amount to production bar
Diffstat (limited to 'frontend/src/components/game/GameScene.jsx')
-rw-r--r-- | frontend/src/components/game/GameScene.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/game/GameScene.jsx b/frontend/src/components/game/GameScene.jsx index 18d7ca26..23be5ef1 100644 --- a/frontend/src/components/game/GameScene.jsx +++ b/frontend/src/components/game/GameScene.jsx @@ -46,7 +46,7 @@ class GameScenePresenter extends Component<GameSceneProps> { <Hand cards={turnInfo.hand} wonderUpgradable={turnInfo.wonderBuildability.buildable} prepareMove={this.props.prepareMove}/> - <ProductionBar production={board.production}/> + <ProductionBar gold={board.gold} production={board.production}/> </div> } } |