Ne plus afficher les tirages automatiques

Les tirages automatiques sont intégrés dans les messages
This commit is contained in:
Vincent Vandemeulebrouck
2021-02-05 01:10:54 +01:00
parent 0c7a0e413d
commit 3d3bc7dc70
2 changed files with 11 additions and 13 deletions

View File

@ -35,12 +35,12 @@ export class RdDRollTables {
}
/* -------------------------------------------- */
static async getSouffle(toChat = true) {
static async getSouffle(toChat = false) {
return await RdDRollTables.drawItemFromRollTable("Souffles de Dragon", toChat);
}
/* -------------------------------------------- */
static async getQueue(toChat = true) {
static async getQueue(toChat = false) {
let queue = await RdDRollTables.drawItemFromRollTable("Queues de dragon", toChat);
if (queue.name.toLowerCase().includes('lancinant') ) {
queue = await RdDRollTables.drawItemFromRollTable("Désirs lancinants", toChat);
@ -52,17 +52,17 @@ export class RdDRollTables {
}
/* -------------------------------------------- */
static async getTete(toChat = true) {
static async getTete(toChat = false) {
return await RdDRollTables.drawItemFromRollTable("Têtes de Dragon pour haut-rêvants", toChat);
}
/* -------------------------------------------- */
static async getTeteHR(toChat = true) {
static async getTeteHR(toChat = false) {
return await RdDRollTables.drawItemFromRollTable("Têtes de Dragon pour tous personnages", toChat);
}
/* -------------------------------------------- */
static async getOmbre(toChat = true) {
static async getOmbre(toChat = false) {
return await RdDRollTables.drawItemFromRollTable("Ombre de Thanatos", toChat);
}