Skip to content

Commit 4208a3c

Browse files
committed
Update multi roll logic to use ;
Moving mutli roll logic from / to ; to resolve an issue with division operations but also align with other dice rolling bots on the discord app market.
1 parent eeab9da commit 4208a3c

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ A roll set is possible. Below is an example of the command:
134134

135135
`/roll 6 4d6` : Roll 6 sets of four six-sided dice. A size of a set can be between 2 and 20.
136136

137-
Or you can combine multiple unique rolls in a single request. The max unique rolls here is **four** due to Discord API limitations. Example roll is as follows:
137+
Or you can combine multiple unique rolls in a single request. The max unique rolls here is **four** due to Discord API limitations. Rolls are separated with a semicolon. Example roll is as follows:
138138

139-
`/roll 4d100 / 10d6 e6 k8 +4/ 3d10 k2/ ul 3d100`
139+
`/roll 4d100 ; 10d6 e6 k8 +4; 3d10 k2; ul 3d100`
140140

141141
**Note:** Multi roll support is in a "beta feature" stage and some more complicated rolls may cause issues. Please report on github if you run into a problem!
142142

dice_maiden.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dice bot for Discord
22
# Author: Humblemonk
3-
# Version: 9.0.2
3+
# Version: 9.0.3
44
# Copyright (c) 2017. All rights reserved.
55
# !/usr/bin/ruby
66
# If you wish to run a single instance of this bot, please follow the "Manual Install" section of the readme!
@@ -54,7 +54,7 @@
5454
response_array = []
5555
begin
5656
inc_event_roll = event.options.values.join('')
57-
rolls_array = inc_event_roll.split(%r{\s*/\s*}).take(4)
57+
rolls_array = inc_event_roll.split(/\s*;\s*/).take(4)
5858
rolls_array.each do |event_roll|
5959
@do_tally_shuffle = false
6060
check_comment(event_roll)

doc/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 9.0.3 -2024-06-27
2+
### Added
3+
- Updated multi roll logic to use semi colons to break between roll sets.
4+
Resolves an issue with doing division commands
5+
16
## 9.0.2 -2024-06-24
27
### Added
38
- Resolved an issue where numbers in comments broke rolls

0 commit comments

Comments
 (0)