Skip to content

Commit

Permalink
Allow rolls up to d1000
Browse files Browse the repository at this point in the history
One line change to allow rolls up to d1000. This is required for some
game systems.

closes #129
  • Loading branch information
Humblemonk committed Apr 7, 2024
1 parent 802abea commit 881d409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dice_maiden_logic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def check_roll(event)
event.respond(content: 'Please roll a dice value 2 or greater')
return true
end
if @dice_check > 100
event.respond(content: 'Please roll dice up to d100')
if @dice_check > 1000
event.respond(content: 'Please roll dice up to d1000')
return true
end
# Check for too large of dice pools
Expand Down

0 comments on commit 881d409

Please sign in to comment.