Added super no details flag to the api

This commit is contained in:
Ean Milligan (Bastion) 2022-05-09 19:52:15 -04:00
parent eba7e028b2
commit 9b77912a85
1 changed files with 6 additions and 4 deletions

View File

@ -264,12 +264,14 @@ const start = async (): Promise<void> => {
} }
// Determine if no details flag was on // Determine if no details flag was on
if (!query.has("snd")) {
if (query.has("nd")) { if (query.has("nd")) {
returnText += "\nDetails suppressed by nd query."; returnText += "\nDetails suppressed by nd query.";
} else { } else {
returnText += `\nDetails:\n${spoilerTxt}${returnmsg.line3}${spoilerTxt}`; returnText += `\nDetails:\n${spoilerTxt}${returnmsg.line3}${spoilerTxt}`;
} }
} }
}
// If the roll was a GM roll, send DMs to all the GMs // If the roll was a GM roll, send DMs to all the GMs
if (query.has("gms")) { if (query.has("gms")) {