1
0

Fix #39 - intitial-placement now has a message displayed

Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
This commit is contained in:
James Ketrenos 2022-02-27 16:17:51 -08:00
parent 0c0858a54a
commit 0c102c9f42
2 changed files with 4 additions and 1 deletions

View File

@ -63,7 +63,7 @@
margin: 0.5em 0;
}
.GameOrder > * {
width: 20em;
min-width: 20em;
display: inline-flex;
padding: 0.5em;
flex-direction: column;

View File

@ -867,6 +867,9 @@ class Table extends React.Component {
}
}
break;
case 'initial-placement':
message = <>{message}It is time for all the players to place their initial two settlements, with one road connected to each settlement.</>;
break;
case 'active':
if (!player) {
message = <>{message}This game is no longer in the lobby.<br/><b>TODO: Override game state to allow Lobby mode while in-game</b></>;