#3 Améliorations fiche

This commit is contained in:
2020-11-24 18:39:27 +01:00
parent ba66f79f63
commit d3111f6d28
6 changed files with 37 additions and 36 deletions

View File

@ -28,10 +28,10 @@ export class RdDDice {
case "blindroll": //GM only
blind = true;
case "gmroll": //GM + rolling player
whisper = ChatUtility.getUsersIds(user => user.isGM);
whisper = ChatUtility.getUsers(user => user.isGM);
break;
case "roll": //everybody
whisper = ChatUtility.getUsersIds(user => user.active);
whisper = ChatUtility.getUsers(user => user.active);
break;
case "selfroll":
whisper = [game.user._id];