Skip to content

Commit

Permalink
Merge pull request savagezen#14 from seldonPlan/fix-dice-roll
Browse files Browse the repository at this point in the history
Fix for Dice Roll Bug
  • Loading branch information
savagezen authored Jul 27, 2019
2 parents 51be237 + 0c90402 commit 98954f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dnd-tools
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ def start_fn():
sides = int(input("How many sides on each die? "))
for _ in itertools.repeat(None, dice):
print(random.randrange(1, sides))
start_fn()
start_fn()
elif option == "3":
n_players = int(input("How many initiative rolls (e.g. players + monsters)? "))
for _ in itertools.repeat(None, n_players):
Expand Down

0 comments on commit 98954f0

Please sign in to comment.