updates
Browse files
app.py
CHANGED
@@ -181,6 +181,7 @@ def stat( ndice, dicerank):
|
|
181 |
for n
|
182 |
in range(ndice)
|
183 |
]
|
|
|
184 |
lowest = min(results) # Find the lowest roll among the results
|
185 |
results.remove(lowest) # Remove the first instance of that lowest roll
|
186 |
answer.append(sum(results)) # Return the sum of the remaining results.
|
|
|
181 |
for n
|
182 |
in range(ndice)
|
183 |
]
|
184 |
+
|
185 |
lowest = min(results) # Find the lowest roll among the results
|
186 |
results.remove(lowest) # Remove the first instance of that lowest roll
|
187 |
answer.append(sum(results)) # Return the sum of the remaining results.
|