Skip to content

Commit

Permalink
Update some wording
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaUrsa committed Jan 24, 2024
1 parent 3219af0 commit 2229f08
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions src/discord/commands/global/d.calcDXM.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ export const dCalcDXM: SlashCommand = {
.setRequired(true))
.addStringOption(option => option.setName('taking')
// eslint-disable-next-line max-len
.setDescription('What are you taking? All products listed here contain DXM hBr as the sole active ingredient.')
.setDescription('What are you taking? All products (except RoboTablets) contain DXM hBr.')
.addChoices(
{ name: 'RoboTablets (30 mg tablets)', value: 'RoboTablets (30 mg tablets)' },
{ name: 'RoboCough (ml)', value: 'RoboCough (ml)' },
{ name: 'Robitussin DX (oz)', value: 'Robitussin DX (oz)' },
{ name: 'Robitussin DX (ml)', value: 'Robitussin DX (ml)' },
{ name: 'Robitussin Gelcaps (15 mg caps)', value: 'Robitussin Gelcaps (15 mg caps)' },
{ name: 'Pure (mg)', value: 'Pure (mg)' },
{ name: '30mg Gelcaps (30 mg caps)', value: '30mg Gelcaps (30 mg caps)' },
{ name: 'RoboTablets (30 mg freebase tablets)', value: 'RoboTablets (30 mg tablets)' },
{ name: 'RoboCough (ml HBr)', value: 'RoboCough (ml)' },
{ name: 'Robitussin DX (oz HBr)', value: 'Robitussin DX (oz)' },
{ name: 'Robitussin DX (ml HBr)', value: 'Robitussin DX (ml)' },
{ name: 'Robitussin Gelcaps (15 mg caps HBr)', value: 'Robitussin Gelcaps (15 mg caps)' },
{ name: 'Pure (mg HBr)', value: 'Pure (mg)' },
{ name: '30mg Gelcaps (30 mg HBr caps)', value: '30mg Gelcaps (30 mg caps)' },
)
.setRequired(true))
.addBooleanOption(option => option.setName('ephemeral')
Expand Down
2 changes: 1 addition & 1 deletion src/discord/commands/global/d.combo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const dCombo: SlashCommand = {
options?: string[];
};
if (errorResults.msg.includes('not found')) {
await interaction.editReply(stripIndents`${drugA} and ${drugB} have no known interactions or we could not find them in the database!
await interaction.editReply(stripIndents`I could not find interactions between ${drugA} and ${drugB} in the database!

Check warning on line 47 in src/discord/commands/global/d.combo.ts

View workflow job for this annotation

GitHub Actions / Lint

This line has a length of 125. Maximum allowed is 120
This does not mean combining them is safe: this means we don't have information on it!`);
return false;
Expand Down

0 comments on commit 2229f08

Please sign in to comment.