1
0

Add a message when the admin rolls for a player

Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
This commit is contained in:
James Ketrenos 2022-02-04 16:55:16 -08:00
parent f7e3f6590e
commit 7e7b016a70

View File

@ -380,6 +380,7 @@ const adminActions = (game, action, value) => {
return `Unable to find player ${value.replace(/-.*/, '')}` return `Unable to find player ${value.replace(/-.*/, '')}`
} }
addChatMessage(game, null, `Admin rolled ${dice} for ${color}.`);
player = game.players[color]; player = game.players[color];
processGameOrder(game, player, dice); processGameOrder(game, player, dice);
break; break;