diff --git a/public/scripts/extensions/dice/index.js b/public/scripts/extensions/dice/index.js
index c49cdcdfc..64abde1bb 100644
--- a/public/scripts/extensions/dice/index.js
+++ b/public/scripts/extensions/dice/index.js
@@ -93,5 +93,5 @@ jQuery(function () {
addDiceRollButton();
moduleWorker();
setInterval(moduleWorker, UPDATE_INTERVAL);
- registerSlashCommand('roll', (_, value) => doDiceRoll(value), [], "(dice formula) – roll the dice. For example, /roll 2d6", false, true);
+ registerSlashCommand('roll', (_, value) => doDiceRoll(value), ['r'], "(dice formula) – roll the dice. For example, /roll 2d6", false, true);
});