aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2019-01-05 12:51:23 +0000
committerSean Whitton <spwhitton@spwhitton.name>2019-01-05 12:51:23 +0000
commit07cf19ac2b6b90bd936f42dbfa47c7d3932b2c24 (patch)
tree91f8e67c1022a89b8920c276f2db7bfd62784df3
parent8c4538c5241ec5f5d31d2b5ed15e621fff9058c3 (diff)
downloadorg-d20-07cf19ac2b6b90bd936f42dbfa47c7d3932b2c24.tar.gz
fix lettering to start at 'A' not 'B'
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--org-d20.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-d20.el b/org-d20.el
index 1bb8d5d..2b56768 100644
--- a/org-d20.el
+++ b/org-d20.el
@@ -314,7 +314,7 @@ the best N of them, e.g., 4d6k3."
(seq-elt
(list "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "L" "M"
"N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z")
- n)
+ (- n 1))
(int-to-string n)))
(defun org-d20-roll-at-point ()