v11.2.2 - Les tendres moments d'Akarlikarlikar #685
@@ -71,7 +71,7 @@ export class ChatUtility {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  static removeChatMessageId(messageId) {
 | 
					  static removeChatMessageId(messageId) {
 | 
				
			||||||
    if (messageId){
 | 
					    if (messageId) {
 | 
				
			||||||
      ChatUtility.removeMessages({ messageId: messageId });
 | 
					      ChatUtility.removeMessages({ messageId: messageId });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -118,9 +118,10 @@ export class ChatUtility {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* -------------------------------------------- */
 | 
					  /* -------------------------------------------- */
 | 
				
			||||||
  static getWhisperRecipientsAndGMs(name) {
 | 
					  static getWhisperRecipientsAndGMs(...names) {
 | 
				
			||||||
    let recep1 = ChatMessage.getWhisperRecipients(name) || [];
 | 
					    let recipients = [...ChatMessage.getWhisperRecipients('GM')]
 | 
				
			||||||
    return recep1.concat(ChatMessage.getWhisperRecipients('GM'));
 | 
					    names.forEach(name => recipients.push(...ChatMessage.getWhisperRecipients(name)))
 | 
				
			||||||
 | 
					    return recipients
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* -------------------------------------------- */
 | 
					  /* -------------------------------------------- */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user