diff --git a/src/commands/roll.ts b/src/commands/roll.ts index 9b3ae27..3063fd8 100644 --- a/src/commands/roll.ts +++ b/src/commands/roll.ts @@ -45,7 +45,7 @@ export const roll = async (message: DiscordenoMessage, args: string[], command: const m = await message.reply(rollingEmbed); // Get modifiers from command - const [modifiers, remainingArgs] = getModifiers(args); + const [modifiers, remainingArgs] = getModifiers(args.join('').split(' ')); // Return early if the modifiers were invalid if (!modifiers.valid) {