start
Browse files- CharacterMaker +1 -0
- app.py +1 -1
CharacterMaker
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Subproject commit cd15b06378035bfdfc60eb19d92058fe9ddfb7d8
|
app.py
CHANGED
|
@@ -37,7 +37,7 @@ iface = gr.Interface(fn=describe, inputs=[gr.Textbox(label="Your DND character",
|
|
| 37 |
iface.launch()
|
| 38 |
|
| 39 |
def stat(n_dice, dice_rank):
|
| 40 |
-
results = [ # Generate n_dice numbers between [1,
|
| 41 |
random.randint(1, dice_rank)
|
| 42 |
for n
|
| 43 |
in range(n_dice)
|
|
|
|
| 37 |
iface.launch()
|
| 38 |
|
| 39 |
def stat(n_dice, dice_rank):
|
| 40 |
+
results = [ # Generate n_dice numbers between [1,dice_rank]
|
| 41 |
random.randint(1, dice_rank)
|
| 42 |
for n
|
| 43 |
in range(n_dice)
|