diff --git a/client/src/ViewCard.js b/client/src/ViewCard.js index f4c0b25..2fc7b09 100644 --- a/client/src/ViewCard.js +++ b/client/src/ViewCard.js @@ -68,10 +68,8 @@ const ViewCard = ({table, card}) => { case 'progress-year-of-plenty': description = <>
Take any 2 resources from the bank. Add them to your hand. They can be - 2 of the same resource or 2 different resources.
-
Unfortunately the current implementation only lets you pick a single - resource and you will then get 2 of those.
- ; + 2 of the same resource or 1 of two differ resources. + ; break; }; diff --git a/server/routes/games.js b/server/routes/games.js index 7756604..a851ce0 100755 --- a/server/routes/games.js +++ b/server/routes/games.js @@ -1557,7 +1557,7 @@ router.put("/:id/:action/:value?", async (req, res) => { return sendGame(req, res, game, error); case 'chat': const chat = req.body; - addChatMessage(game, session, chat.message); + addChatMessage(game, session, `${session.name}: ${chat.message}`); /* Chat messages can set game flags and fields */ const parts = chat.message.match(/^set +([^ ]*) +(.*)$/i); if (parts && parts.length === 3) {